summaryrefslogtreecommitdiffhomepage
path: root/purescript.html.markdown
diff options
context:
space:
mode:
authorNigel Thorne <github@nigelthorne.com>2016-02-26 09:30:35 +1100
committerNigel Thorne <github@nigelthorne.com>2016-02-26 09:30:35 +1100
commit38d92105b268e2057521a51c10370b29898ddfe0 (patch)
treefbf6b2a5be3f438e8206d5bbe258f40c43447506 /purescript.html.markdown
parent2094f59079b79fb94326166dc2dc820962eb15a0 (diff)
spelling/typo
Diffstat (limited to 'purescript.html.markdown')
-rw-r--r--purescript.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/purescript.html.markdown b/purescript.html.markdown
index 6d8cfbb9..7dd97a18 100644
--- a/purescript.html.markdown
+++ b/purescript.html.markdown
@@ -197,7 +197,7 @@ let even x = x `mod` 2 == 0
filter even (1..10) -- [2,4,6,8,10]
map (\x -> x + 11) (1..5) -- [12,13,14,15,16]
--- Requires purescript-foldable-traversabe (Data.Foldable)
+-- Requires purescript-foldable-traversable (Data.Foldable)
foldr (+) 0 (1..10) -- 55
sum (1..10) -- 55