diff options
author | Nami-Doc <vendethiel@hotmail.fr> | 2014-02-04 00:11:03 -0800 |
---|---|---|
committer | Nami-Doc <vendethiel@hotmail.fr> | 2014-02-04 00:11:03 -0800 |
commit | babd67b9ecf45d412ab8e1fd005354a3bbc88da0 (patch) | |
tree | 71f6187d2cbfe99568d1e37838f78ef9010f0328 /haskell.html.markdown | |
parent | 0d0375c73cc9751b85408051105e49ffb4b94181 (diff) | |
parent | 718693ef48641e28c3382467ae2959322923fcda (diff) |
Merge pull request #514 from aaronraimist/patch-1
[haskell/en] Fixes issue #510
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 341c013e..e0489710 100644 --- a/haskell.html.markdown +++ b/haskell.html.markdown @@ -303,7 +303,7 @@ Nothing -- of type `Maybe a` for any `a` -- While IO can't be explained fully without explaining monads, -- it is not hard to explain enough to get going. --- When a Haskell program is executed, the function `main` is +-- When a Haskell program is executed, `main` is -- called. It must return a value of type `IO ()`. For example: main :: IO () |