aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux/control/function/memo.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/documentation/lux/control/function/memo.lux')
-rw-r--r--stdlib/source/documentation/lux/control/function/memo.lux6
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/source/documentation/lux/control/function/memo.lux b/stdlib/source/documentation/lux/control/function/memo.lux
index 9fd53f36e..caa98f2b1 100644
--- a/stdlib/source/documentation/lux/control/function/memo.lux
+++ b/stdlib/source/documentation/lux/control/function/memo.lux
@@ -15,16 +15,16 @@
[($.default /.memoization)
($.default (/.Memo input output))
- ($.documentation /.open
+ ($.definition /.open
"Memoization where the memoized results can be re-used accross invocations."
[(open memo)])
- ($.documentation /.closed
+ ($.definition /.closed
(format "Memoization confined to a single invocation to the function (not counting any subsequent recursive invocations)."
\n "Memoized results will be re-used during recursive invocations, but cannot be accessed after the main invocation has ended.")
[(closed hash memo)])
- ($.documentation /.none
+ ($.definition /.none
(format "No memoization at all."
\n "This is useful as a test control when measuring the effect of using memoization.")
[(none hash memo)])]