From d7b92ced5e7c85c01d0b67c788acadbb218a3d3e Mon Sep 17 00:00:00 2001 From: Matthias Kruk Date: Sun, 27 Jun 2021 16:35:28 +0900 Subject: [PATCH] include/queue: Fix missing arrowheads in documentation The petri net in the comment explaining the queue internals are missing arrowheads. This may cause confusion since edges in petri nets are usually directed. This commit adds the missing arrowheads to the petri net. --- include/queue.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/queue.sh b/include/queue.sh index fbcb8ff..0eceda2 100644 --- a/include/queue.sh +++ b/include/queue.sh @@ -24,7 +24,7 @@ # as described by the following petri net. # # .-----. -# .--------------| c00 |---------------. +# .------------->| c00 |---------------. # | '-----' | # | | # '---| .-----. | .-----. |<--' @@ -32,7 +32,7 @@ # .---| '-----' |<-. '-----' |<--. # | | | # | .-----. | .-----. -# '-------| mtx |------' | sem | +# '------>| mtx |------' | sem | # | 1 | | 0 | # .-------| |<------. | | # | '-----' | '-----' -- 2.47.3