aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorsimonmar <unknown>2002-05-13 15:20:54 +0000
committersimonmar <unknown>2002-05-13 15:20:54 +0000
commita774d432602b80254052a1836b95b8d6ffc0d806 (patch)
treeb8e4b9019a7be736e61c0007242cccff5baf98fb /doc
parenta90130c4e9199a3f3255a12c1ad24b013df687e0 (diff)
[haddock @ 2002-05-13 15:20:54 by simonmar]
Fix one of the record examples
Diffstat (limited to 'doc')
-rw-r--r--doc/haddock.sgml5
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/haddock.sgml b/doc/haddock.sgml
index afb60f91..74128baa 100644
--- a/doc/haddock.sgml
+++ b/doc/haddock.sgml
@@ -514,8 +514,9 @@ data R a b =
}
data R a b =
- C { a :: a, -- ^ This is the documentation for the 'a' field
- b :: b -- ^ This is the documentation for the 'b' field
+ C { a :: a -- ^ This is the documentation for the 'a' field
+ -- (NOTE: *before* the following comma)
+ , b :: b -- ^ This is the documentation for the 'b' field
}
</programlisting>
</section>