aboutsummaryrefslogtreecommitdiff
path: root/src/Haddock/Interface
diff options
context:
space:
mode:
authorDavid Waern <david.waern@gmail.com>2009-02-27 22:15:17 +0000
committerDavid Waern <david.waern@gmail.com>2009-02-27 22:15:17 +0000
commit66d74f43a0c8721205f774c8789d44b7ac346555 (patch)
treee03a5f020273c032a5bc0336b99beae57b2df74a /src/Haddock/Interface
parent77f31758cd65a79c8749f070d0c562e7be8a139f (diff)
Shorten warning message
Diffstat (limited to 'src/Haddock/Interface')
-rw-r--r--src/Haddock/Interface/Create.hs5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/Haddock/Interface/Create.hs b/src/Haddock/Interface/Create.hs
index d3f408fa..290d6d2c 100644
--- a/src/Haddock/Interface/Create.hs
+++ b/src/Haddock/Interface/Create.hs
@@ -240,9 +240,8 @@ warnAboutFilteredDecls mod decls = do
when (not $ null instances) $
tell $ nub $ [
- "Warning: " ++ modStr ++ ": Rendering of associated types for instances has "
- ++ "not yet been implemented. Associated types will not be shown for the "
- ++ "following instances:\n" ++ (concat $ intersperse ", " instances) ]
+ "Warning: " ++ modStr ++ ": We do not support associated types in instances yet. "
+ ++ "These instances are affected:\n" ++ (concat $ intersperse ", " instances) ]
--------------------------------------------------------------------------------