diff options
author | Maxence Guesdon <maxence.guesdon@inria.fr> | 2012-09-25 07:51:21 +0000 |
---|---|---|
committer | Maxence Guesdon <maxence.guesdon@inria.fr> | 2012-09-25 07:51:21 +0000 |
commit | dd78691ec4a96fa489ba556841c653bc438e22da (patch) | |
tree | 4adc0db0c83bb49aafe8df0c8770fa094ca91a70 /ocamldoc/odoc_html.ml | |
parent | f071c2722e17a80d1e4741e49f1c225d267d54e9 (diff) |
PR#5111: description of module not put into a tag
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@12954 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'ocamldoc/odoc_html.ml')
-rw-r--r-- | ocamldoc/odoc_html.ml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ocamldoc/odoc_html.ml b/ocamldoc/odoc_html.ml index 37fe6b5f9..3e8bcb283 100644 --- a/ocamldoc/odoc_html.ml +++ b/ocamldoc/odoc_html.ml @@ -1783,7 +1783,7 @@ class html = if info then ( if complete then - self#html_of_info ~indent: false + self#html_of_info ~indent: true else self#html_of_info_first_sentence ) b m.m_info @@ -1812,7 +1812,7 @@ class html = if info then ( if complete then - self#html_of_info ~indent: false + self#html_of_info ~indent: true else self#html_of_info_first_sentence ) b mt.mt_info @@ -1969,7 +1969,7 @@ class html = print_DEBUG "html#html_of_class : info" ; ( if complete then - self#html_of_info ~indent: false + self#html_of_info ~indent: true else self#html_of_info_first_sentence ) b c.cl_info @@ -2012,7 +2012,7 @@ class html = bs b "</pre>"; ( if complete then - self#html_of_info ~indent: false + self#html_of_info ~indent: true else self#html_of_info_first_sentence ) b ct.clt_info |