diff options
Diffstat (limited to 'ocamldoc/odoc_print.ml')
-rw-r--r-- | ocamldoc/odoc_print.ml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ocamldoc/odoc_print.ml b/ocamldoc/odoc_print.ml index a62832fdb..d09bc9324 100644 --- a/ocamldoc/odoc_print.ml +++ b/ocamldoc/odoc_print.ml @@ -90,9 +90,9 @@ let simpl_class_type t = Types.cty_concr = Types.Concr.empty ; Types.cty_inher = [] } - | Types.Cty_fun (l, texp, ct) -> + | Types.Cty_arrow (l, texp, ct) -> let new_ct = iter ct in - Types.Cty_fun (l, texp, new_ct) + Types.Cty_arrow (l, texp, new_ct) in iter t |