diff options
author | Adam Bard <github@adambard.com> | 2013-08-08 14:21:12 -0700 |
---|---|---|
committer | Adam Bard <github@adambard.com> | 2013-08-08 14:21:12 -0700 |
commit | f97d85c5ab8660c41560c375eff44c6052d61d2f (patch) | |
tree | f8f3f0619f961e2a708af95551ec410d6f2e6fe9 /haskell.html.markdown | |
parent | 25af6856a7f3db135fb5d979edb72401e7149553 (diff) | |
parent | 946a450995d874c807faa16a5df817ca80a7ecb0 (diff) |
Merge pull request #179 from isomorphisms/patch-2
'/' is a character
Diffstat (limited to 'haskell.html.markdown')
-rw-r--r-- | haskell.html.markdown | 2 |
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 |