@@ -457,7 +457,7 @@ type formatter
457
457
margin, maximum indentation limit, maximum number of boxes
458
458
simultaneously opened, ellipsis, and so on, are specific to
459
459
each pretty-printer and may be fixed independently.
460
- Given a [ Pervasives.out_channel] output channel [oc], a new formatter
460
+ Given a {! Pervasives.out_channel} output channel [oc], a new formatter
461
461
writing to that channel is simply obtained by calling
462
462
[formatter_of_out_channel oc].
463
463
Alternatively, the [make_formatter] function allocates a new
@@ -500,7 +500,7 @@ val make_formatter :
500
500
(string -> int -> int -> unit ) -> (unit -> unit ) -> formatter
501
501
(* * [make_formatter out flush] returns a new formatter that writes according
502
502
to the output function [out], and the flushing function [flush]. For
503
- instance, a formatter to the [ Pervasives.out_channel] [oc] is returned by
503
+ instance, a formatter to the {! Pervasives.out_channel} [oc] is returned by
504
504
[make_formatter (Pervasives.output oc) (fun () -> Pervasives.flush oc)]. *)
505
505
506
506
(* * {6 Basic functions to use with formatters} *)
@@ -604,7 +604,7 @@ val fprintf : formatter -> ('a, formatter, unit) format -> 'a
604
604
605
605
The format [fmt] is a character string which contains three types of
606
606
objects: plain characters and conversion specifications as specified in
607
- the [ Printf] module, and pretty-printing indications specific to the
607
+ the {! Printf} module, and pretty-printing indications specific to the
608
608
[Format] module.
609
609
610
610
The pretty-printing indication characters are introduced by
0 commit comments