summaryrefslogtreecommitdiff
path: root/compiler
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2015-12-03 13:43:16 -0500
committerBen Gamari <ben@smart-cactus.org>2015-12-03 23:00:16 +0100
commit7b29b0b1e8efac68fd4151cb5a44c4290a3e9d57 (patch)
tree91b3d78665c497645d214cdf051bcfe400de4176 /compiler
parentc5597bb6da612e0578290c3bccdac089d6519e19 (diff)
downloadhaskell-7b29b0b1e8efac68fd4151cb5a44c4290a3e9d57.tar.gz
Fix haddock syntax
Sadly we can't annotate the elements of a tuple
Diffstat (limited to 'compiler')
-rw-r--r--compiler/deSugar/Check.hs11
1 files changed, 8 insertions, 3 deletions
diff --git a/compiler/deSugar/Check.hs b/compiler/deSugar/Check.hs
index 8ca0b54162..382112c951 100644
--- a/compiler/deSugar/Check.hs
+++ b/compiler/deSugar/Check.hs
@@ -117,9 +117,14 @@ data ValSetAbs -- Reprsents a set of value vector abstractions
| Constraint [PmConstraint] ValSetAbs -- ^ Extend Delta
| Cons ValAbs ValSetAbs -- ^ map (ucon u) vs
-type PmResult = ( [[LPat Id]] -- ^ redundant clauses
- , [[LPat Id]] -- ^ clauses with inaccessible rhs
- , [([PmExpr], [ComplexEq])] ) -- ^ missing
+-- | Pattern check result
+--
+-- * redundant clauses
+-- * clauses with inaccessible RHS
+-- * missing
+type PmResult = ( [[LPat Id]]
+ , [[LPat Id]]
+ , [([PmExpr], [ComplexEq])] )
{-
%************************************************************************