[project @ 2005-04-14 18:07:05 by ross]
authorross <unknown>
Thu, 14 Apr 2005 18:07:05 +0000 (18:07 +0000)
committerross <unknown>
Thu, 14 Apr 2005 18:07:05 +0000 (18:07 +0000)
fix typo (Sourceforge bug #1183229)

(for STABLE)

ghc/docs/users_guide/glasgow_exts.xml

index 377a97c..3d52399 100644 (file)
@@ -3180,7 +3180,7 @@ classes <literal>Eq</literal>, <literal>Ord</literal>,
 GHC extends this list with two more classes that may be automatically derived 
 (provided the <option>-fglasgow-exts</option> flag is specified):
 <literal>Typeable</literal>, and <literal>Data</literal>.  These classes are defined in the library
-modules <literal>Data.Dynamic</literal> and <literal>Data.Generics</literal> respectively, and the
+modules <literal>Data.Typeable</literal> and <literal>Data.Generics</literal> respectively, and the
 appropriate class must be in scope before it can be mentioned in the <literal>deriving</literal> clause.
 </para>
 </sect2>
@@ -3807,7 +3807,7 @@ proc x -> f x -&lt;&lt; x+1
 </screen>
 which is equivalent to
 <screen>
-arr (\ x -> (f, x+1)) >>> app
+arr (\ x -> (f x, x+1)) >>> app
 </screen>
 so in this case the arrow must belong to the <literal>ArrowApply</literal>
 class.