summaryrefslogtreecommitdiffhomepage
path: root/haskell.html.markdown
diff options
context:
space:
mode:
authorCamilo Garrido <hiro.hope@gmail.com>2013-08-11 12:47:21 -0400
committerCamilo Garrido <hiro.hope@gmail.com>2013-08-11 12:47:21 -0400
commite6bae9cbd39dbed3b5db2f1673a954132ce889e2 (patch)
treecd2909593568b94616329abd43a0016be05473ff /haskell.html.markdown
parent80ea89b58a470f9b1a4ce7710f4de6ac69dee5ee (diff)
parent28b26b85ff3a94501adc0550c484c90d3e76fb90 (diff)
Merge branch 'master' of github.com:adambard/learnxinyminutes-docs
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 be7d8669..9847ef2a 100644
--- a/haskell.html.markdown
+++ b/haskell.html.markdown
@@ -131,7 +131,7 @@ add 1 2 -- 3
-- with backticks:
1 `add` 2 -- 3
--- You can also define functions that have no characters! This lets
+-- You can also define functions that have no letters! This lets
-- you define your own operators! Here's an operator that does
-- integer division
(//) a b = a `div` b