summaryrefslogtreecommitdiff
path: root/libraries
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2014-06-12 00:57:26 +0200
committerGabor Greif <ggreif@gmail.com>2014-06-12 00:57:26 +0200
commit165ac4af4a1002eff5f5a474bc21bc443c8f8c63 (patch)
tree40be8b04f7c438a32fecd5103d5e3c252dec5236 /libraries
parent7f467d0fbb1424f638a0d39caf57b9c0198421a8 (diff)
downloadhaskell-165ac4af4a1002eff5f5a474bc21bc443c8f8c63.tar.gz
Catch two typos
Diffstat (limited to 'libraries')
-rw-r--r--libraries/base/GHC/Base.lhs4
1 files changed, 2 insertions, 2 deletions
diff --git a/libraries/base/GHC/Base.lhs b/libraries/base/GHC/Base.lhs
index 5c362d4c33..6a089ee432 100644
--- a/libraries/base/GHC/Base.lhs
+++ b/libraries/base/GHC/Base.lhs
@@ -148,12 +148,12 @@ resulting in:
Bottom line: we make GHC.Base depend on GHC.Integer; and everything
else either depends on GHC.Base, or does not have NoImplicitPrelude
-(ane hence depends on Prelude).
+(and hence depends on Prelude).
Note [Depend on GHC.Tuple]
~~~~~~~~~~~~~~~~~~~~~~~~~~
Similarly, tuple syntax (or ()) creates an implicit dependency on
-GHC.Tuple, so we use the same ruse as for Integer --- see Note [Depend on
+GHC.Tuple, so we use the same rule as for Integer --- see Note [Depend on
GHC.Integer] --- to explain this to the build system. We make GHC.Base
depend on GHC.Tuple, and everything else depends on GHC.Base or Prelude.