From: ross Date: Thu, 14 Apr 2005 18:07:05 +0000 (+0000) Subject: [project @ 2005-04-14 18:07:05 by ross] X-Git-Tag: Initial_conversion_from_CVS_complete~738 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=d9bc4e4a3372c732c1c631d8dae7e5613d7464fe;p=ghc-hetmet.git [project @ 2005-04-14 18:07:05 by ross] fix typo (Sourceforge bug #1183229) (for STABLE) --- diff --git a/ghc/docs/users_guide/glasgow_exts.xml b/ghc/docs/users_guide/glasgow_exts.xml index 377a97c..3d52399 100644 --- a/ghc/docs/users_guide/glasgow_exts.xml +++ b/ghc/docs/users_guide/glasgow_exts.xml @@ -3180,7 +3180,7 @@ classes Eq, Ord, GHC extends this list with two more classes that may be automatically derived (provided the flag is specified): Typeable, and Data. These classes are defined in the library -modules Data.Dynamic and Data.Generics respectively, and the +modules Data.Typeable and Data.Generics respectively, and the appropriate class must be in scope before it can be mentioned in the deriving clause. @@ -3807,7 +3807,7 @@ proc x -> f x -<< x+1 which is equivalent to -arr (\ x -> (f, x+1)) >>> app +arr (\ x -> (f x, x+1)) >>> app so in this case the arrow must belong to the ArrowApply class.