summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Schilling <nominolo@googlemail.com>2008-07-20 17:31:05 +0000
committerThomas Schilling <nominolo@googlemail.com>2008-07-20 17:31:05 +0000
commit268377f59589e6afec1048458c350011ebb74afe (patch)
tree1e713360061550450f275d10a52f18ce6d46db03
parentbb7ffa1642e2110e26e1243c42a8a24adafa985d (diff)
downloadhaskell-268377f59589e6afec1048458c350011ebb74afe.tar.gz
Fix Haddock errors.
-rw-r--r--compiler/utils/GraphPpr.hs6
-rw-r--r--compiler/utils/Panic.lhs2
2 files changed, 4 insertions, 4 deletions
diff --git a/compiler/utils/GraphPpr.hs b/compiler/utils/GraphPpr.hs
index 1df5158dc2..8149b2aa86 100644
--- a/compiler/utils/GraphPpr.hs
+++ b/compiler/utils/GraphPpr.hs
@@ -58,9 +58,9 @@ dumpNode node
dotGraph
:: ( Uniquable k
, Outputable k, Outputable cls, Outputable color)
- => (color -> SDoc) -- | What graphviz color to use for each node color
- -- It's usually safe to return X11 style colors here,
- -- ie "red", "green" etc or a hex triplet #aaff55 etc
+ => (color -> SDoc) -- ^ What graphviz color to use for each node color
+ -- It's usually safe to return X11 style colors here,
+ -- ie "red", "green" etc or a hex triplet #aaff55 etc
-> Triv k cls color
-> Graph k cls color -> SDoc
diff --git a/compiler/utils/Panic.lhs b/compiler/utils/Panic.lhs
index b8ab86af68..97648b72de 100644
--- a/compiler/utils/Panic.lhs
+++ b/compiler/utils/Panic.lhs
@@ -168,7 +168,7 @@ tryUser action = tryJust tc_errors action
where
tc_errors e@(Exception.IOException ioe) | isUserError ioe = Just e
tc_errors _other = Nothing
-\end{code}
+\end{code}
Standard signal handlers for catching ^C, which just throw an
exception in the target thread. The current target thread is