summaryrefslogtreecommitdiff
path: root/compiler/parser
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2016-01-07 11:48:16 +0100
committerGabor Greif <ggreif@gmail.com>2016-01-07 11:48:16 +0100
commitc78fedde7055490ca6f6210ada797190f3c35d87 (patch)
treede4fc884f27401ef872607ed02a57ed03774cb28 /compiler/parser
parent1ee92293651c0cc70504df1a4450febb986ad891 (diff)
downloadhaskell-c78fedde7055490ca6f6210ada797190f3c35d87.tar.gz
Typos in docs and comments
Diffstat (limited to 'compiler/parser')
-rw-r--r--compiler/parser/Parser.y4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/parser/Parser.y b/compiler/parser/Parser.y
index 473295652a..380fd3c3cb 100644
--- a/compiler/parser/Parser.y
+++ b/compiler/parser/Parser.y
@@ -1773,9 +1773,9 @@ varids0 :: { Located [Located RdrName] }
Note [Parsing ~]
~~~~~~~~~~~~~~~~
-Due to parsing conflicts between lazyness annotations in data type
+Due to parsing conflicts between laziness annotations in data type
declarations (see strict_mark) and equality types ~'s are always
-parsed as lazyness annotations, and turned into HsEqTy's in the
+parsed as laziness annotations, and turned into HsEqTy's in the
correct places using RdrHsSyn.splitTilde.
Since strict_mark is parsed as part of atype which is part of type,