From 4c64e76734c2eabf512d078e483c81f75fc172dd Mon Sep 17 00:00:00 2001 From: Xavier Leroy Date: Sat, 25 May 2002 08:37:33 +0000 Subject: [PATCH] Documentation du flag 0 git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@4835 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02 --- stdlib/printf.mli | 1 + 1 file changed, 1 insertion(+) diff --git a/stdlib/printf.mli b/stdlib/printf.mli index 1ccd78222..df08f05ca 100644 --- a/stdlib/printf.mli +++ b/stdlib/printf.mli @@ -64,6 +64,7 @@ val fprintf : out_channel -> ('a, out_channel, unit) format -> 'a The optional flags include: - [-]: left-justify the output (default is right justification). + - [0]: for numerical conversions, pad with zeroes instead of spaces. - [+]: for numerical conversions, prefix number with a [+] sign if positive. - space: for numerical conversions, prefix number with a space if positive. - [#]: request an alternate formatting style for numbers.