diff options
author | Ian Lynagh <igloo@earth.li> | 2008-08-28 12:47:21 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2008-08-28 12:47:21 +0000 |
commit | c35325dd60a671e6e7fcc513fc3ae02586106c4c (patch) | |
tree | eb366ca6b94c13b953281292fb05ffbac0c4e18d /compiler/utils/GraphBase.hs | |
parent | 7d96fdae290360a20009e61de851a1c267a93549 (diff) | |
download | haskell-c35325dd60a671e6e7fcc513fc3ae02586106c4c.tar.gz |
Fix a haddock2 failure
Diffstat (limited to 'compiler/utils/GraphBase.hs')
-rw-r--r-- | compiler/utils/GraphBase.hs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler/utils/GraphBase.hs b/compiler/utils/GraphBase.hs index 04eda96120..249626eb27 100644 --- a/compiler/utils/GraphBase.hs +++ b/compiler/utils/GraphBase.hs @@ -31,9 +31,9 @@ import UniqFM -- Smith, Ramsey, Holloway - PLDI 2004. -- type Triv k cls color - = cls -- ^ the class of the node we're trying to color. - -> UniqSet k -- ^ the node's neighbors. - -> UniqSet color -- ^ the node's exclusions. + = cls -- the class of the node we're trying to color. + -> UniqSet k -- the node's neighbors. + -> UniqSet color -- the node's exclusions. -> Bool |