summaryrefslogtreecommitdiff
path: root/compiler/main/InteractiveEval.hs
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2019-01-22 12:07:47 +0100
committerBen Gamari <ben@well-typed.com>2019-01-23 14:07:28 -0500
commitbb2acfe0ec4c196a87218709ee28327845d62dc4 (patch)
tree5b7c314caa4944997e7faa51ba3fd9c5328fc913 /compiler/main/InteractiveEval.hs
parentc9a02dfc32ea4304c1c0d02bd8091fd5d045741f (diff)
downloadhaskell-bb2acfe0ec4c196a87218709ee28327845d62dc4.tar.gz
A few typofixes
Diffstat (limited to 'compiler/main/InteractiveEval.hs')
-rw-r--r--compiler/main/InteractiveEval.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/main/InteractiveEval.hs b/compiler/main/InteractiveEval.hs
index ad3c500d1f..79e64b3ad9 100644
--- a/compiler/main/InteractiveEval.hs
+++ b/compiler/main/InteractiveEval.hs
@@ -246,7 +246,7 @@ runParsedDecls decls = do
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
We don't want to display internally-generated bindings to users.
Things like the coercion axiom for newtypes. These bindings all get
-OccNames that users can't write, to avoid the possiblity of name
+OccNames that users can't write, to avoid the possibility of name
clashes (in linker symbols). That gives a convenient way to suppress
them. The relevant predicate is OccName.isDerivedOccName.
See Trac #11051 for more background and examples.