diff options
author | Lars-Dominik Braun <lars@6xq.net> | 2022-09-03 15:20:13 +0200 |
---|---|---|
committer | Lars-Dominik Braun <lars@6xq.net> | 2022-09-03 15:20:13 +0200 |
commit | 75f487a3747b07e62f4cc67fd8eb6cc43299cdfd (patch) | |
tree | 6e8954e6b9658b3911552ef0b589b289a4d9f882 /src/lib/Codec | |
parent | 6f7219760d989c3a2b0fd1aee05766911688e0bb (diff) | |
download | pesto-75f487a3747b07e62f4cc67fd8eb6cc43299cdfd.tar.gz pesto-75f487a3747b07e62f4cc67fd8eb6cc43299cdfd.tar.bz2 pesto-75f487a3747b07e62f4cc67fd8eb6cc43299cdfd.zip |
graph: Move bullet point into text
Diffstat (limited to 'src/lib/Codec')
-rw-r--r-- | src/lib/Codec/Pesto/Graph.lhs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/Codec/Pesto/Graph.lhs b/src/lib/Codec/Pesto/Graph.lhs index 2f6de7f..a9d42a7 100644 --- a/src/lib/Codec/Pesto/Graph.lhs +++ b/src/lib/Codec/Pesto/Graph.lhs @@ -29,10 +29,10 @@ Language semantics > import Codec.Pesto.Parse hiding (test) The parser’s output, a stream of instructions, may contain multiple recipes. A -recipe must start with the directive “pesto” and may end with “buonappetito”. -This function extracts all recipes from the stream and removes both directives. - -- easily embed recipes into other documents +recipe must start with the directive “pesto” and may end with +“buonappetito”, which allows embedding recipes into other (plain-text) +documents. This function extracts all recipes from the stream and removes +both directives. > startDirective = Directive "pesto" > endDirective = Directive "buonappetito" |