diff options
author | ross <unknown> | 2005-04-14 18:07:05 +0000 |
---|---|---|
committer | ross <unknown> | 2005-04-14 18:07:05 +0000 |
commit | d9bc4e4a3372c732c1c631d8dae7e5613d7464fe (patch) | |
tree | 528f8760f52652d40dffd519bed77eed52b041a7 | |
parent | 1ad59dbb1121bf3e779b1cf15f41ef08ad61bd3b (diff) | |
download | haskell-d9bc4e4a3372c732c1c631d8dae7e5613d7464fe.tar.gz |
[project @ 2005-04-14 18:07:05 by ross]
fix typo (Sourceforge bug #1183229)
(for STABLE)
-rw-r--r-- | ghc/docs/users_guide/glasgow_exts.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ghc/docs/users_guide/glasgow_exts.xml b/ghc/docs/users_guide/glasgow_exts.xml index 377a97c38d..3d523998d1 100644 --- a/ghc/docs/users_guide/glasgow_exts.xml +++ b/ghc/docs/users_guide/glasgow_exts.xml @@ -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 -<< 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. |