diff options
author | simonmar <unknown> | 2001-05-10 09:00:28 +0000 |
---|---|---|
committer | simonmar <unknown> | 2001-05-10 09:00:28 +0000 |
commit | 8ab118717df9419ce3e6a890e75c3f088d6fc974 (patch) | |
tree | ff4bb477eb24430af78465a119f70827e54fef2b | |
parent | b16f846dfa03b4570eaa7d0ce18f0f7c3d9ee015 (diff) | |
download | haskell-8ab118717df9419ce3e6a890e75c3f088d6fc974.tar.gz |
[project @ 2001-05-10 09:00:28 by simonmar]
typo in error msg, pointed out by Alastair Reid.
-rw-r--r-- | ghc/compiler/hsSyn/HsExpr.lhs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ghc/compiler/hsSyn/HsExpr.lhs b/ghc/compiler/hsSyn/HsExpr.lhs index c5cd5b5253..cf7a863e0a 100644 --- a/ghc/compiler/hsSyn/HsExpr.lhs +++ b/ghc/compiler/hsSyn/HsExpr.lhs @@ -686,5 +686,5 @@ pprMatchContext RecUpd = ptext SLIT("In a record-update construct") pprMatchContext PatBindRhs = ptext SLIT("In a pattern binding") pprMatchContext LambdaExpr = ptext SLIT("In a lambda abstraction") pprMatchContext DoExpr = ptext SLIT("In a 'do' expression pattern binding") -pprMatchContext ListComp = ptext SLIT("In a 'list comprension' pattern binding") +pprMatchContext ListComp = ptext SLIT("In a 'list comprehension' pattern binding") \end{code} |