[haskell/en] Fixes issue #510

This commit is contained in:
Aaron Raimist 2014-02-03 17:09:52 -06:00
parent 0d0375c73c
commit 718693ef48

View File

@ -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 ()