summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAdam Bard <github@adambard.com>2016-02-26 14:55:51 -0800
committerAdam Bard <github@adambard.com>2016-02-26 14:55:51 -0800
commita11b3ec0dd3b72ef734a72b5ca088d58ec7af1a6 (patch)
tree4506763fb54bdc051287510194c991ddf55b111c
parentf08db9a8fceba784e1370efd79e1900e0f1ea621 (diff)
parent38d92105b268e2057521a51c10370b29898ddfe0 (diff)
Merge pull request #2159 from NigelThorne/master
spelling/typo
-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