diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2016-01-12 23:50:11 +0100 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2016-01-12 23:50:11 +0100 |
commit | c7fcdcbb72ba2aeb9e345572c8d5afb0fc59bf2d (patch) | |
tree | 5cb28fcd29188947268ed646a5d0bc4d2a3fbac9 /provider | |
parent | d2513e76ec82dee125bec95221cd332302d22333 (diff) | |
download | dirty-haskell.org-c7fcdcbb72ba2aeb9e345572c8d5afb0fc59bf2d.tar dirty-haskell.org-c7fcdcbb72ba2aeb9e345572c8d5afb0fc59bf2d.tar.gz dirty-haskell.org-c7fcdcbb72ba2aeb9e345572c8d5afb0fc59bf2d.tar.bz2 dirty-haskell.org-c7fcdcbb72ba2aeb9e345572c8d5afb0fc59bf2d.tar.xz dirty-haskell.org-c7fcdcbb72ba2aeb9e345572c8d5afb0fc59bf2d.zip |
typo
Diffstat (limited to 'provider')
-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} |