diff options
author | Camilo Garrido <hiro.hope@gmail.com> | 2013-08-11 12:47:21 -0400 |
---|---|---|
committer | Camilo Garrido <hiro.hope@gmail.com> | 2013-08-11 12:47:21 -0400 |
commit | e6bae9cbd39dbed3b5db2f1673a954132ce889e2 (patch) | |
tree | cd2909593568b94616329abd43a0016be05473ff /haskell.html.markdown | |
parent | 80ea89b58a470f9b1a4ce7710f4de6ac69dee5ee (diff) | |
parent | 28b26b85ff3a94501adc0550c484c90d3e76fb90 (diff) |
Merge branch 'master' of github.com:adambard/learnxinyminutes-docs
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 |