summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Peyton Jones <simonpj@microsoft.com>2012-05-04 15:29:30 +0100
committerSimon Peyton Jones <simonpj@microsoft.com>2012-05-04 15:29:30 +0100
commit4f2dfe1e3f2dffed5fde404ad0309789d114c62c (patch)
tree181352f3cf455e933fac15c4cb44b31970615b61
parent1169351dca19dc3973448336ae168ddba154e606 (diff)
downloadhaskell-4f2dfe1e3f2dffed5fde404ad0309789d114c62c.tar.gz
Fix typo in error message (Trac #6076)
-rw-r--r--compiler/rename/RnTypes.lhs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rename/RnTypes.lhs b/compiler/rename/RnTypes.lhs
index 776e0ccb34..99401faefc 100644
--- a/compiler/rename/RnTypes.lhs
+++ b/compiler/rename/RnTypes.lhs
@@ -432,7 +432,7 @@ badSigErr is_type doc (L loc ty)
where
what | is_type = ptext (sLit "type")
| otherwise = ptext (sLit "kind")
- flag | is_type = ptext (sLit "-XScopedTypeVariable")
+ flag | is_type = ptext (sLit "-XScopedTypeVariables")
| otherwise = ptext (sLit "-XKindSignatures")
\end{code}