aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux/control/lazy.lux
diff options
context:
space:
mode:
authorEduardo Julian2022-07-08 17:47:23 -0400
committerEduardo Julian2022-07-08 17:47:23 -0400
commit7976268575e7c6910dfba2d2733e8cc1883678e7 (patch)
tree0ce156081612235c0df5e2ad9167be3fc5d75c6c /stdlib/source/documentation/lux/control/lazy.lux
parent39325bb36c6f6459c861ef12f9e99b9e66b52594 (diff)
Re-named the "documentation" macro to "definition".
Diffstat (limited to 'stdlib/source/documentation/lux/control/lazy.lux')
-rw-r--r--stdlib/source/documentation/lux/control/lazy.lux4
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/source/documentation/lux/control/lazy.lux b/stdlib/source/documentation/lux/control/lazy.lux
index df45b6cd5..aadba8ec1 100644
--- a/stdlib/source/documentation/lux/control/lazy.lux
+++ b/stdlib/source/documentation/lux/control/lazy.lux
@@ -18,11 +18,11 @@
($.default /.apply)
($.default /.monad)
- ($.documentation (/.Lazy it)
+ ($.definition (/.Lazy it)
(format "A value specified by an expression that is calculated only at the last moment possible."
\n "Afterwards, the value is cached for future reference."))
- ($.documentation /.lazy
+ ($.definition /.lazy
"Specifies a lazy value by providing the expression that computes it."
[(lazy eager_computation)])]
[]))