diff options
Diffstat (limited to 'provider/posts')
-rw-r--r-- | provider/posts/thermoprint-4.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/provider/posts/thermoprint-4.md b/provider/posts/thermoprint-4.md index 2606c06..d64f760 100644 --- a/provider/posts/thermoprint-4.md +++ b/provider/posts/thermoprint-4.md | |||
@@ -30,7 +30,7 @@ We reproduce an incomplete version of the lexer below (it’s missing tag attrib | |||
30 | 30 | ||
31 | We introduce `escapedText`, a helper function for extracting text until we reach one of a set of delimiting characters | 31 | We introduce `escapedText`, a helper function for extracting text until we reach one of a set of delimiting characters |
32 | (exclusive). | 32 | (exclusive). |
33 | While doing this we also parse any delimiting character iff it's prefixed with an escape character (we use `\\`) -- the | 33 | While doing this we also parse any delimiting character iff it's prefixed with an escape character (we use `\`) -- the |
34 | escape character itself needs only be escaped if encountered directly before one of the delimiting characters. | 34 | escape character itself needs only be escaped if encountered directly before one of the delimiting characters. |
35 | 35 | ||
36 | ~~~ {.haskell} | 36 | ~~~ {.haskell} |