diff options
Diffstat (limited to 'stdlib/int32.mli')
-rw-r--r-- | stdlib/int32.mli | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/stdlib/int32.mli b/stdlib/int32.mli index dc733ec9fc..eeafb1a2fc 100644 --- a/stdlib/int32.mli +++ b/stdlib/int32.mli @@ -160,9 +160,5 @@ val compare: t -> t -> int (** {6 Deprecated functions} *) external format : string -> int32 -> string = "caml_int32_format" -(** [Int32.format fmt n] return the string representation of the - 32-bit integer [n] in the format specified by [fmt]. - [fmt] is a [Printf]-style format consisting of exactly - one [%d], [%i], [%u], [%x], [%X] or [%o] conversion specification. - This function is deprecated; use {!Printf.sprintf} with a [%lx] format - instead. *) +(** Do not use this deprecated function. Instead, + used {!Printf.sprintf} with a [%l...] format. *) |