summaryrefslogtreecommitdiff
path: root/compiler/specialise
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2016-02-19 12:57:03 +0100
committerGabor Greif <ggreif@gmail.com>2016-02-19 12:57:03 +0100
commit8b073f6c5be69e024eb20a2b296c94be54ec82ac (patch)
tree0dc00a8ffa56fc0bd49d7f021814374e3af71697 /compiler/specialise
parent0b68cbefb60e0ff814beb119bbde9fce6ac99fc7 (diff)
downloadhaskell-8b073f6c5be69e024eb20a2b296c94be54ec82ac.tar.gz
A few more typos in non-code
Diffstat (limited to 'compiler/specialise')
-rw-r--r--compiler/specialise/Specialise.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/specialise/Specialise.hs b/compiler/specialise/Specialise.hs
index 443998b5fe..a8380d863b 100644
--- a/compiler/specialise/Specialise.hs
+++ b/compiler/specialise/Specialise.hs
@@ -766,7 +766,7 @@ Suppose
* Import Lib(foo) into another module M
* Call 'foo' at some specialised type in M
Then you jolly well expect it to be specialised in M. But what if
-'foo' calls another fuction 'Lib.bar'. Then you'd like 'bar' to be
+'foo' calls another function 'Lib.bar'. Then you'd like 'bar' to be
specialised too. But if 'bar' is not marked INLINEABLE it may well
not be specialised. The warning Opt_WarnMissedSpecs warns about this.