diff options
-rw-r--r-- | ghc/compiler/typecheck/TcSimplify.lhs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ghc/compiler/typecheck/TcSimplify.lhs b/ghc/compiler/typecheck/TcSimplify.lhs index eddc3d3861..0c52f1db5a 100644 --- a/ghc/compiler/typecheck/TcSimplify.lhs +++ b/ghc/compiler/typecheck/TcSimplify.lhs @@ -727,7 +727,7 @@ terms of the signature. \begin{code} reduceErr insts sty - = hang (ptext (SLIT("Context required by inferred type, but missing on a type signature"))) + = hang (text "Context required by inferred type, but missing on a type signature") 4 (vcat (map (pprInst sty) (bagToList insts))) \end{code} |