diff options
-rw-r--r-- | examples/Foo.hs | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/examples/Foo.hs b/examples/Foo.hs index a4753aa9..5837fab9 100644 --- a/examples/Foo.hs +++ b/examples/Foo.hs @@ -34,7 +34,10 @@ module Foo ( f, g, -- * Auxiliary stuff - -- $aux + + -- $aux1 + + -- $aux2 ) where @@ -138,6 +141,8 @@ h :: Int h = 42 --- $aux This is some documentation that is attached to a name ($aux) +-- $aux1 This is some documentation that is attached to a name ($aux1) -- rather than a source declaration. The documentation may be -- referred to in the export list using its name. + +-- $aux2 This is some documentation that is attached to a name ($aux2) |