summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAdam Bard <github@adambard.com>2013-08-08 14:21:12 -0700
committerAdam Bard <github@adambard.com>2013-08-08 14:21:12 -0700
commitf97d85c5ab8660c41560c375eff44c6052d61d2f (patch)
treef8f3f0619f961e2a708af95551ec410d6f2e6fe9
parent25af6856a7f3db135fb5d979edb72401e7149553 (diff)
parent946a450995d874c807faa16a5df817ca80a7ecb0 (diff)
Merge pull request #179 from isomorphisms/patch-2
'/' is a character
-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