summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAdam Bard <github@adambard.com>2016-02-27 14:58:19 -0800
committerAdam Bard <github@adambard.com>2016-02-27 14:58:19 -0800
commit1c2e77939c1715430b4442d3ef4fcac84db23d02 (patch)
tree3a10ea447f85138b1eae330d8afa2eed1301f96c
parent02b46ecf4003c38a675041c3fd30fbd9dfedd7ca (diff)
parent952a7da82a30d4509d0d5aa8cfc61e63f6b11ce5 (diff)
Merge pull request #2163 from JacobCWard/typo-9
[purescript/en] comparisions -> comparisons
-rw-r--r--purescript.html.markdown5
1 files changed, 2 insertions, 3 deletions
diff --git a/purescript.html.markdown b/purescript.html.markdown
index 7dd97a18..b413a9e3 100644
--- a/purescript.html.markdown
+++ b/purescript.html.markdown
@@ -48,7 +48,7 @@ not true -- false
23 == 23 -- true
1 /= 4 -- true
1 >= 4 -- false
--- Comparisions < <= > >=
+-- Comparisons < <= > >=
-- are defined in terms of compare
compare 1 2 -- LT
compare 2 2 -- EQ
@@ -62,7 +62,7 @@ true && (9 >= 19 || 1 < 2) -- true
"Hellow\
\orld" -- "Helloworld"
-- Multiline string with newlines
-"""Hello
+"""Hello
world""" -- "Hello\nworld"
-- Concatenate
"such " ++ "amaze" -- "such amaze"
@@ -208,4 +208,3 @@ any even [1,2,3] -- true
all even [1,2,3] -- false
```
-