From b220bbfd2ec08e83dba00dbc2d1cef7b879c13e4 Mon Sep 17 00:00:00 2001 From: "tob.brandt" Date: Tue, 23 Nov 2010 23:35:11 +0000 Subject: documentation for qualification --- doc/haddock.xml | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) (limited to 'doc') diff --git a/doc/haddock.xml b/doc/haddock.xml index 806e50e7..461d01d3 100644 --- a/doc/haddock.xml +++ b/doc/haddock.xml @@ -786,6 +786,61 @@ $ pdflatex package.tex + + + + mode + + + + =mode + + + + Specify how identifiers are qualified. + + + mode should be one of + + + none (default): don't qualify any identifiers + + + full: always qualify identifiers completely + + + local: only qualify identifiers that are not part + of the module + + + relative: like local, but strip name of the module + from qualifications of identifiers in submodules + + + + + Example: If you generate documentation for module A, then the + identifiers A.x, A.B.y and C.z are qualified as follows. + + + + + none: x, y, z + + + full: A.x, A.B.y, C.z + + + local: x, A.B.y, C.z + + + relative: x, B.y, C.z + + + + + + -- cgit v1.2.3