From b29919ba7845925dcf4bdbeb3fa0045ac4be2e26 Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Sun, 6 Mar 2011 15:15:32 +0000 Subject: [PATCH] Fix doc formatting --- docs/users_guide/using.xml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/users_guide/using.xml b/docs/users_guide/using.xml index cc5045e..06862e7 100644 --- a/docs/users_guide/using.xml +++ b/docs/users_guide/using.xml @@ -1312,13 +1312,15 @@ f foo = foo { x = 6 } import declaration that does not explicitly list the entities brought into scope. For example + module M where import X( f ) import Y import qualified Z p x = f x x - + + The flag will warn about the import of Y but not X If module Y is later changed to export (say) f, @@ -1326,6 +1328,7 @@ module M where ambiguous. No warning is produced for the import of Z because extending Z's exports would be unlikely to produce ambiguity in M. + -- 1.7.10.4