From fe5f184972013b4cf1951b89e0337735dc9af86b Mon Sep 17 00:00:00 2001 From: Pierre Weis Date: Mon, 4 Oct 2004 20:18:17 +0000 Subject: [PATCH] Documentation. git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@6625 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02 --- stdlib/printf.mli | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stdlib/printf.mli b/stdlib/printf.mli index d8f77b5f1..6a38386fd 100644 --- a/stdlib/printf.mli +++ b/stdlib/printf.mli @@ -28,7 +28,8 @@ val fprintf : out_channel -> ('a, out_channel, unit) format -> 'a Conversion specifications consist in the [%] character, followed by optional flags and field widths, followed by one or two conversion character. The conversion characters and their meanings are: - - [d], [i], [n], or [N]: convert an integer argument to signed decimal. + - [d], [i], [n], [l], [L], or [N]: convert an integer argument to + signed decimal. - [u]: convert an integer argument to unsigned decimal. - [x]: convert an integer argument to unsigned hexadecimal, using lowercase letters.