[purescript/en] comparisions -> comparisons

This commit is contained in:
Jacob Ward 2016-02-27 15:38:22 -07:00
parent 02b46ecf40
commit 952a7da82a

View File

@ -48,7 +48,7 @@ not true -- false
23 == 23 -- true 23 == 23 -- true
1 /= 4 -- true 1 /= 4 -- true
1 >= 4 -- false 1 >= 4 -- false
-- Comparisions < <= > >= -- Comparisons < <= > >=
-- are defined in terms of compare -- are defined in terms of compare
compare 1 2 -- LT compare 1 2 -- LT
compare 2 2 -- EQ compare 2 2 -- EQ
@ -62,7 +62,7 @@ true && (9 >= 19 || 1 < 2) -- true
"Hellow\ "Hellow\
\orld" -- "Helloworld" \orld" -- "Helloworld"
-- Multiline string with newlines -- Multiline string with newlines
"""Hello """Hello
world""" -- "Hello\nworld" world""" -- "Hello\nworld"
-- Concatenate -- Concatenate
"such " ++ "amaze" -- "such amaze" "such " ++ "amaze" -- "such amaze"
@ -208,4 +208,3 @@ any even [1,2,3] -- true
all even [1,2,3] -- false all even [1,2,3] -- false
``` ```