summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReid Barton <rwbarton@gmail.com>2015-07-25 23:36:29 -0400
committerReid Barton <rwbarton@gmail.com>2015-07-25 23:36:29 -0400
commit474d4ccc6e4a3bea93be16cb7daef6ffcdf9b663 (patch)
tree935cb2161b4d76ffe7fa8aef516ed6f825230ae6
parentc55f61ca3f008cc70911d962297fb51f84056661 (diff)
downloadhaskell-474d4ccc6e4a3bea93be16cb7daef6ffcdf9b663.tar.gz
Comment tweaks only
-rw-r--r--compiler/stgSyn/StgSyn.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/stgSyn/StgSyn.hs b/compiler/stgSyn/StgSyn.hs
index 6c6d4bfb1d..d04a15791a 100644
--- a/compiler/stgSyn/StgSyn.hs
+++ b/compiler/stgSyn/StgSyn.hs
@@ -174,7 +174,7 @@ function. (If the arguments were expressions, we would have to build
their closures first.)
There is no constructor for a lone variable; it would appear as
-@StgApp var [] _@.
+@StgApp var []@.
-}
type GenStgLiveVars occ = UniqSet occ
@@ -191,7 +191,7 @@ data GenStgExpr bndr occ
* *
************************************************************************
-There are a specialised forms of application, for constructors,
+There are specialised forms of application, for constructors,
primitives, and literals.
-}