summaryrefslogtreecommitdiff
path: root/src/compiler/GF/Compile/Compute/Value.hs
diff options
context:
space:
mode:
authorhallgren <hallgren@chalmers.se>2014-10-15 20:42:36 +0000
committerhallgren <hallgren@chalmers.se>2014-10-15 20:42:36 +0000
commit393dde2eb93a975442697c177dbb161e4300bea0 (patch)
treec1a9b693e6ffcd154eb1105ba973317638073dd9 /src/compiler/GF/Compile/Compute/Value.hs
parent8381c7b0c05c7086325c7adcebc1cfe7fffd6ad4 (diff)
Fixes for the haddock documentation
Diffstat (limited to 'src/compiler/GF/Compile/Compute/Value.hs')
-rw-r--r--src/compiler/GF/Compile/Compute/Value.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compiler/GF/Compile/Compute/Value.hs b/src/compiler/GF/Compile/Compute/Value.hs
index f076e47ba..35f093ada 100644
--- a/src/compiler/GF/Compile/Compute/Value.hs
+++ b/src/compiler/GF/Compile/Compute/Value.hs
@@ -11,7 +11,7 @@ data Value
| VCApp QIdent [Value] -- from QC, constructors
| VGen Int [Value] -- for lambda bound variables, possibly applied
| VMeta MetaId Env [Value]
--- | VClosure Env Term -- used in Typecheck.ConcreteNew
+-- -- | VClosure Env Term -- used in Typecheck.ConcreteNew
| VAbs BindType Ident Binding -- used in Compute.ConcreteNew
| VProd BindType Value Ident Binding -- used in Compute.ConcreteNew
| VInt Int
@@ -32,7 +32,7 @@ data Value
| VFV [Value]
| VAlts Value [(Value, Value)]
| VStrs [Value]
--- | VGlue Value Value -- hmm
+-- -- | VGlue Value Value -- hmm
| VExtR Value Value -- hmm
| VError String
deriving (Eq,Show)