diff options
author | Gabor Greif <ggreif@gmail.com> | 2014-06-11 01:00:58 +0200 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2014-06-11 20:22:51 +0200 |
commit | a9ff7d0819fce392a243549c08299b897f04d555 (patch) | |
tree | 9e5320fa70573aaff57d56b0cd41b1e3b852d5a7 /compiler/iface | |
parent | f73d42f0c88153bcfec23d8f35d0721272539867 (diff) | |
download | haskell-a9ff7d0819fce392a243549c08299b897f04d555.tar.gz |
Typo in variable name, no functional change
Diffstat (limited to 'compiler/iface')
-rw-r--r-- | compiler/iface/MkIface.lhs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/iface/MkIface.lhs b/compiler/iface/MkIface.lhs index 760f349f73..de99e98454 100644 --- a/compiler/iface/MkIface.lhs +++ b/compiler/iface/MkIface.lhs @@ -880,9 +880,9 @@ instOrphWarn dflags unqual inst = mkWarnMsg dflags (getSrcSpan inst) unqual $ hang (ptext (sLit "Orphan instance:")) 2 (pprInstanceHdr inst) $$ text "To avoid this" - $$ nest 4 (vcat posibilities) + $$ nest 4 (vcat possibilities) where - posibilities = + possibilities = text "move the instance declaration to the module of the class or of the type, or" : text "wrap the type with a newtype and declare the instance on the new type." : [] |