diff options
author | Damien Doligez <damien.doligez-inria.fr> | 2011-12-21 15:37:54 +0000 |
---|---|---|
committer | Damien Doligez <damien.doligez-inria.fr> | 2011-12-21 15:37:54 +0000 |
commit | cca0035fbb25e0539c85a62b554c5b0abed66062 (patch) | |
tree | a3d0f4a8b1eb522c2107d9f920a07857d8080659 /stdlib/printf.mli | |
parent | a85549ccf6b923198293f7335986b9b18417d06b (diff) |
continuing to change the name to OCaml
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@11922 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'stdlib/printf.mli')
-rw-r--r-- | stdlib/printf.mli | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/stdlib/printf.mli b/stdlib/printf.mli index 797a354dd..83366a532 100644 --- a/stdlib/printf.mli +++ b/stdlib/printf.mli @@ -42,12 +42,12 @@ val fprintf : out_channel -> ('a, out_channel, unit) format -> 'a using uppercase letters. - [o]: convert an integer argument to unsigned octal. - [s]: insert a string argument. - - [S]: insert a string argument in Caml syntax (double quotes, escapes). + - [S]: insert a string argument in OCaml syntax (double quotes, escapes). - [c]: insert a character argument. - - [C]: insert a character argument in Caml syntax (single quotes, escapes). + - [C]: insert a character argument in OCaml syntax (single quotes, escapes). - [f]: convert a floating-point argument to decimal notation, in the style [dddd.ddd]. - - [F]: convert a floating-point argument to Caml syntax ([dddd.] + - [F]: convert a floating-point argument to OCaml syntax ([dddd.] or [dddd.ddd] or [d.ddd e+-dd]). - [e] or [E]: convert a floating-point argument to decimal notation, in the style [d.ddd e+-dd] (mantissa and exponent). @@ -153,7 +153,7 @@ val kprintf : (string -> 'a) -> ('b, unit, string, 'a) format4 -> 'b;; (**/**) -(* For Caml system internal use only. Don't call directly. *) +(* For OCaml system internal use only. Don't call directly. *) module CamlinternalPr : sig |