diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 1998-04-27 09:55:50 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 1998-04-27 09:55:50 +0000 |
commit | 95933de17c122f254bd91231d04b9cab89f134c3 (patch) | |
tree | dcb89d15970690700b3c6ccf95a5c4a0f3d8b3e6 /stdlib/lazy.mli | |
parent | 208be2cae2ec48293f30590ba9184f0e813402d2 (diff) |
Corrections mineures sur la documentation
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@1933 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'stdlib/lazy.mli')
-rw-r--r-- | stdlib/lazy.mli | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/lazy.mli b/stdlib/lazy.mli index 43a4001af..da0566a54 100644 --- a/stdlib/lazy.mli +++ b/stdlib/lazy.mli @@ -20,7 +20,7 @@ type 'a status = ;; type 'a t = 'a status ref;; -(* A value of type ['a Lazy.t] is a deferred computation (called a +(* A value of type ['a Lazy.t] is a deferred computation (also called a suspension) that computes a result of type ['a]. The expression [lazy (expr)] returns a suspension that computes [expr]. *) |