
8 Dec
2010
8 Dec
'10
6:16 p.m.
Code in the source of a package like: @ *Main> throw ThisException `catch` \e -> putStrLn (\"Caught \" ++ show (e :: MyException)) Caught ThisException @ (from the module http://haskell.org/ghc/docs/7.0-latest/html/libraries/base-4.3.0.0/src/GHC-E...) gets formatted like: *Main> throw ThisException catch e -> putStrLn ("Caught " ++ show (e :: MyException)) Caught ThisException where the underlying HTML is: </p><pre> *Main> throw ThisException <code>catch</code> e -> putStrLn ("Caught " ++ show (e :: MyException)) Caught ThisException </pre><p> This is a Haddock problem I assume? Doaitse