summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorÖmer Sinan Ağacan <omeragacan@gmail.com>2016-06-18 16:10:19 +0000
committerÖmer Sinan Ağacan <omeragacan@gmail.com>2016-06-18 16:10:19 +0000
commit6354991fe61b065d2c993eefdd5fd694bc6136b8 (patch)
treea1a6d55d3deef1a1968f26a477f6fa89af1fe0d4
parenta4c8532941a3aa613443a9a371f0353dceb66451 (diff)
downloadhaskell-6354991fe61b065d2c993eefdd5fd694bc6136b8.tar.gz
VarEnv: Comment only
-rw-r--r--compiler/basicTypes/VarEnv.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/basicTypes/VarEnv.hs b/compiler/basicTypes/VarEnv.hs
index 5a852a3829..ee63e2c3a2 100644
--- a/compiler/basicTypes/VarEnv.hs
+++ b/compiler/basicTypes/VarEnv.hs
@@ -90,7 +90,7 @@ import StaticFlags
-}
-- | A set of variables that are in scope at some point
--- "Secrets of the Glasgow Haskell Compiler inliner" Section 3. provides
+-- "Secrets of the Glasgow Haskell Compiler inliner" Section 3.2 provides
-- the motivation for this abstraction.
data InScopeSet = InScope (VarEnv Var) {-# UNPACK #-} !Int
-- The (VarEnv Var) is just a VarSet. But we write it like