Documentation.

git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@6625 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
master
Pierre Weis 2004-10-04 20:18:17 +00:00
parent af5c49f878
commit fe5f184972
1 changed files with 2 additions and 1 deletions

View File

@ -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.