summaryrefslogtreecommitdiff
path: root/compiler/specialise/SpecConstr.hs
diff options
context:
space:
mode:
authorJoachim Breitner <mail@joachim-breitner.de>2016-09-24 09:16:59 +0900
committerJoachim Breitner <mail@joachim-breitner.de>2016-09-24 09:19:32 +0900
commit68f72f101d67b276aff567be03619a3fd9618017 (patch)
tree3ab35a6e7128daa45d778f590a1f037fa1094a5b /compiler/specialise/SpecConstr.hs
parentd122935340ddf97a5a8496070de1f9bb34328440 (diff)
downloadhaskell-68f72f101d67b276aff567be03619a3fd9618017.tar.gz
Replace INLINEABLE by INLINABLE (#12613)
as the latter is the official, correct spelling, and the former just a misspelling accepted by GHC. Also document in the user’s guide that the alternative spelling is accepted This commit was brough to you by HIW 2016.
Diffstat (limited to 'compiler/specialise/SpecConstr.hs')
-rw-r--r--compiler/specialise/SpecConstr.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/specialise/SpecConstr.hs b/compiler/specialise/SpecConstr.hs
index b485f750e4..60632255d8 100644
--- a/compiler/specialise/SpecConstr.hs
+++ b/compiler/specialise/SpecConstr.hs
@@ -421,7 +421,7 @@ This seeding is done in the binding for seed_calls in specRec.
Actually in case (2), instead of using the calls from the RHS, it
would be better to specialise in the importing module. We'd need to
-add an INLINEABLE pragma to the function, and then it can be
+add an INLINABLE pragma to the function, and then it can be
specialised in the importing scope, just as is done for type classes
in Specialise.specImports. This remains to be done (#10346).