summaryrefslogtreecommitdiffhomepage
path: root/haskell.html.markdown
diff options
context:
space:
mode:
authorAdam <adam@adambard.com>2013-07-02 11:05:22 -0700
committerAdam <adam@adambard.com>2013-07-02 11:05:22 -0700
commitd92508a4cb19278146dc49209e9abf1a4dd1330a (patch)
tree30c41ac370baa6a6d02badc1332426f377f23e52 /haskell.html.markdown
parent94bd7fc1ee62c255f1f1c223c15cefc47e4b7820 (diff)
Changed 'calls
' to 'applies' before someone else does
Diffstat (limited to 'haskell.html.markdown')
-rw-r--r--haskell.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/haskell.html.markdown b/haskell.html.markdown
index bc712505..840569fb 100644
--- a/haskell.html.markdown
+++ b/haskell.html.markdown
@@ -245,7 +245,7 @@ case args of
_ -> putStrLn "bad args"
-- Haskell doesn't have loops because it uses recursion instead.
--- map calls a function over every element in an array
+-- map applies a function over every element in an array
map (*2) [1..5] -- [2, 4, 6, 8, 10]