summaryrefslogtreecommitdiff
path: root/ghc/docs
diff options
context:
space:
mode:
authorsimonmar <unknown>1999-08-02 09:52:43 +0000
committersimonmar <unknown>1999-08-02 09:52:43 +0000
commit57e017ff442eceb71d81ec381a2a2141f24bf00c (patch)
tree6656e3e84048422b0ceba89f967373e7a15b36ee /ghc/docs
parent35de01dc19454ffcc92be863a3900a985d3cd044 (diff)
downloadhaskell-57e017ff442eceb71d81ec381a2a2141f24bf00c.tar.gz
[project @ 1999-08-02 09:52:43 by simonmar]
fix a couple of typos in the rules docs.
Diffstat (limited to 'ghc/docs')
-rw-r--r--ghc/docs/users_guide/glasgow_exts.vsgml6
1 files changed, 3 insertions, 3 deletions
diff --git a/ghc/docs/users_guide/glasgow_exts.vsgml b/ghc/docs/users_guide/glasgow_exts.vsgml
index 284dd9cfd4..dc7c413ad3 100644
--- a/ghc/docs/users_guide/glasgow_exts.vsgml
+++ b/ghc/docs/users_guide/glasgow_exts.vsgml
@@ -1,5 +1,5 @@
%
-% $Id: glasgow_exts.vsgml,v 1.12 1999/07/14 11:33:10 simonmar Exp $
+% $Id: glasgow_exts.vsgml,v 1.13 1999/08/02 09:52:43 simonmar Exp $
%
% GHC Language Extensions.
%
@@ -2127,8 +2127,8 @@ policy is controlled by the per-simplification-pass flag @-finline-phase@n.
<p>
<itemize>
-<item> Use @-fddump-rules@ to see what transformation rules GHC is using.
-<item> Use @-fddump-simpl-stats@ to see what rules are being fired.
+<item> Use @-ddump-rules@ to see what transformation rules GHC is using.
+<item> Use @-ddump-simpl-stats@ to see what rules are being fired.
<item> The defintion of (say) @build@ in @PrelBase.lhs@ looks llike this:
<tscreen><verb>
build :: forall a. (forall b. (a -> b -> b) -> b -> b) -> [a]