diff options
author | David Waern <david.waern@gmail.com> | 2009-02-27 22:15:17 +0000 |
---|---|---|
committer | David Waern <david.waern@gmail.com> | 2009-02-27 22:15:17 +0000 |
commit | 66d74f43a0c8721205f774c8789d44b7ac346555 (patch) | |
tree | e03a5f020273c032a5bc0336b99beae57b2df74a /src | |
parent | 77f31758cd65a79c8749f070d0c562e7be8a139f (diff) |
Shorten warning message
Diffstat (limited to 'src')
-rw-r--r-- | src/Haddock/Interface/Create.hs | 5 |
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) ] -------------------------------------------------------------------------------- |