On this page:

http://www.haskell.org/tutorial/modules.html

it refers to the process of hiding imported names from a module and gives
the example:

  import Prelude hiding length

whereas the correct syntax is

  import Prelude hiding (length)

I spent nearly an hour beating my head against this.  Can someone fix this
in the documentation?

Mike


_______________________________________________
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe

Reply via email to