Talk:GHC/Type families
From HaskellWiki
(Difference between revisions)
m |
m |
||
| Line 1: | Line 1: | ||
| + | In 4.3.2 Examples | ||
| + | module GMap (GMapKey(..), GMap(..)) where...: As before, but also exports all the data constructors GMapInt, GMapChar, GMapUnit, GMapPair, and GMapUnit. | ||
| + | |||
| + | should probably be: | ||
| + | |||
| + | module GMap (GMapKey(..), GMap(..)) where...: As before, but also exports all the data constructors GMapInt, GMapChar, GMapUnit, GMapPair, and GMapEither. | ||
Revision as of 10:38, 13 July 2007
In 4.3.2 Examples
module GMap (GMapKey(..), GMap(..)) where...: As before, but also exports all the data constructors GMapInt, GMapChar, GMapUnit, GMapPair, and GMapUnit.
should probably be:
module GMap (GMapKey(..), GMap(..)) where...: As before, but also exports all the data constructors GMapInt, GMapChar, GMapUnit, GMapPair, and GMapEither.
