diff options
author | Xiao Chuan Yu <xcyu.se@gmail.com> | 2013-08-12 11:17:37 -0400 |
---|---|---|
committer | Xiao Chuan Yu <xcyu.se@gmail.com> | 2013-08-12 11:17:37 -0400 |
commit | 76526895ff276939dbd4a8f36f631588459584ba (patch) | |
tree | d04962928abccdc6a9989980e0ee38d8a2115257 /haskell.html.markdown | |
parent | ad621beb737a9f5086c14a16258236b74b3e7b06 (diff) |
Update haskell.html.markdown
Just a typo. https://github.com/adambard/learnxinyminutes-docs/issues/190
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 9847ef2a..e3ec3f38 100644 --- a/haskell.html.markdown +++ b/haskell.html.markdown @@ -84,7 +84,7 @@ not False -- True -- rest of the elements of this "infinite" list don't exist yet! Haskell won't -- actually evaluate them until it needs to. -- joining two lists +-- joining two lists [1..5] ++ [6..10] -- adding to the head of a list |