diff options
-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 |