summaryrefslogtreecommitdiff
path: root/stdlib/nativeint.mli
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/nativeint.mli')
-rw-r--r--stdlib/nativeint.mli4
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/nativeint.mli b/stdlib/nativeint.mli
index 70ac696ad1..327e44efbf 100644
--- a/stdlib/nativeint.mli
+++ b/stdlib/nativeint.mli
@@ -54,7 +54,7 @@ external mul : nativeint -> nativeint -> nativeint = "%nativeint_mul"
external div : nativeint -> nativeint -> nativeint = "%nativeint_div"
(** Integer division. Raise [Division_by_zero] if the second
argument is zero. This division rounds the real quotient of
- its arguments towards zero, as specified for {!Pervasives.(/)}. *)
+ its arguments towards zero, as specified for {!Stdlib.(/)}. *)
external rem : nativeint -> nativeint -> nativeint = "%nativeint_mod"
(** Integer remainder. If [y] is not zero, the result
@@ -183,7 +183,7 @@ type t = nativeint
val compare: t -> t -> int
(** The comparison function for native integers, with the same specification as
- {!Pervasives.compare}. Along with the type [t], this function [compare]
+ {!Stdlib.compare}. Along with the type [t], this function [compare]
allows the module [Nativeint] to be passed as argument to the functors
{!Set.Make} and {!Map.Make}. *)