diff options
author | Pierre Weis <Pierre.Weis@inria.fr> | 2002-07-28 21:46:07 +0000 |
---|---|---|
committer | Pierre Weis <Pierre.Weis@inria.fr> | 2002-07-28 21:46:07 +0000 |
commit | 0146dc27f9d917ad6614f89051002016d93c41f1 (patch) | |
tree | 143f5134c2036fbaf82a145f6692f687f9082be8 | |
parent | 6c15753d0f24be0ce559b8e34e7f89da56f8156a (diff) |
Typo.
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@5052 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
-rw-r--r-- | stdlib/printf.mli | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/printf.mli b/stdlib/printf.mli index 18d7a01c0..4b118cd2f 100644 --- a/stdlib/printf.mli +++ b/stdlib/printf.mli @@ -46,7 +46,7 @@ val fprintf : out_channel -> ('a, out_channel, unit) format -> 'a - [g] or [G]: convert a floating-point argument to decimal notation, in style [f] or [e], [E] (whichever is more compact). - [b]: convert a boolean argument to the string [true] or [false] - - [ld], [li], [lu], [lx], [lX], [lo]: convert an [int32] argument to. + - [ld], [li], [lu], [lx], [lX], [lo]: convert an [int32] argument to the format specified by the second letter (decimal, hexadecimal, etc). - [nd], [ni], [nu], [nx], [nX], [no]: convert a [nativeint] argument to the format specified by the second letter. |