summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2016-01-12 23:50:11 +0100
committerGregor Kleen <gkleen@yggdrasil.li>2016-01-12 23:50:11 +0100
commitc7fcdcbb72ba2aeb9e345572c8d5afb0fc59bf2d (patch)
tree5cb28fcd29188947268ed646a5d0bc4d2a3fbac9
parentd2513e76ec82dee125bec95221cd332302d22333 (diff)
downloaddirty-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
-rw-r--r--provider/posts/thermoprint-4.md2
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
31We introduce `escapedText`, a helper function for extracting text until we reach one of a set of delimiting characters 31We introduce `escapedText`, a helper function for extracting text until we reach one of a set of delimiting characters
32(exclusive). 32(exclusive).
33While doing this we also parse any delimiting character iff it's prefixed with an escape character (we use `\\`) -- the 33While doing this we also parse any delimiting character iff it's prefixed with an escape character (we use `\`) -- the
34escape character itself needs only be escaped if encountered directly before one of the delimiting characters. 34escape character itself needs only be escaped if encountered directly before one of the delimiting characters.
35 35
36~~~ {.haskell} 36~~~ {.haskell}