From d9bc4e4a3372c732c1c631d8dae7e5613d7464fe Mon Sep 17 00:00:00 2001 From: ross Date: Thu, 14 Apr 2005 18:07:05 +0000 Subject: [PATCH 1/1] [project @ 2005-04-14 18:07:05 by ross] fix typo (Sourceforge bug #1183229) (for STABLE) --- ghc/docs/users_guide/glasgow_exts.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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. -- 1.7.10.4