diff options
author | simonmar <unknown> | 2002-05-13 15:20:54 +0000 |
---|---|---|
committer | simonmar <unknown> | 2002-05-13 15:20:54 +0000 |
commit | a774d432602b80254052a1836b95b8d6ffc0d806 (patch) | |
tree | b8e4b9019a7be736e61c0007242cccff5baf98fb | |
parent | a90130c4e9199a3f3255a12c1ad24b013df687e0 (diff) |
[haddock @ 2002-05-13 15:20:54 by simonmar]
Fix one of the record examples
-rw-r--r-- | doc/haddock.sgml | 5 |
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> |