summaryrefslogtreecommitdiffstats
path: root/stdlib
diff options
context:
space:
mode:
authorPierre Weis <Pierre.Weis@inria.fr>2004-10-04 20:18:17 +0000
committerPierre Weis <Pierre.Weis@inria.fr>2004-10-04 20:18:17 +0000
commitfe5f184972013b4cf1951b89e0337735dc9af86b (patch)
tree97eb8e069fed1e1095f5c6e7c64df8b59482d327 /stdlib
parentaf5c49f878dc38724bffaaeaa08d985552e645d9 (diff)
Documentation.
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@6625 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'stdlib')
-rw-r--r--stdlib/printf.mli3
1 files changed, 2 insertions, 1 deletions
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.