summaryrefslogtreecommitdiffstats
path: root/stdlib/lazy.mli
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/lazy.mli')
-rw-r--r--stdlib/lazy.mli2
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].
*)