diff options
Diffstat (limited to 'stdlib/int64.mli')
-rw-r--r-- | stdlib/int64.mli | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/stdlib/int64.mli b/stdlib/int64.mli index 7bc39e6123..3b641338e7 100644 --- a/stdlib/int64.mli +++ b/stdlib/int64.mli @@ -182,9 +182,5 @@ val compare: t -> t -> int (** {6 Deprecated functions} *) external format : string -> int64 -> string = "caml_int64_format" -(** [Int64.format fmt n] return the string representation of the - 64-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. *) |