summaryrefslogtreecommitdiff
path: root/stdlib/digest.mli
diff options
context:
space:
mode:
authorJérémie Dimino <jeremie@dimino.org>2018-08-27 12:42:14 +0100
committerGitHub <noreply@github.com>2018-08-27 12:42:14 +0100
commit9124ab82d14b0fe4c8092af0f666b19d42139af0 (patch)
tree1d5fca3e26e7029af257196acf8695046be71695 /stdlib/digest.mli
parente6876098344a95a5a7c920b225a0dc797f7c8be1 (diff)
downloadocaml-9124ab82d14b0fe4c8092af0f666b19d42139af0.tar.gz
Deprecate Pervasives (#1605)
- inline Pervasives in Stdlib and re-add Pervasives as a deprecated module that aliases all elements of Stdlib except the stdlib modules. - remove special case for Stdlib.Pervasives in printtyp.ml
Diffstat (limited to 'stdlib/digest.mli')
-rw-r--r--stdlib/digest.mli2
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/digest.mli b/stdlib/digest.mli
index 2c9bebc524..9f9fd53426 100644
--- a/stdlib/digest.mli
+++ b/stdlib/digest.mli
@@ -29,7 +29,7 @@ type t = string
val compare : t -> t -> int
(** The comparison function for 16-character digest, with the same
- specification as {!Pervasives.compare} and the implementation
+ specification as {!Stdlib.compare} and the implementation
shared with {!String.compare}. Along with the type [t], this
function [compare] allows the module [Digest] to be passed as
argument to the functors {!Set.Make} and {!Map.Make}.