aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux/data/product.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/documentation/lux/data/product.lux')
-rw-r--r--stdlib/source/documentation/lux/data/product.lux10
1 files changed, 5 insertions, 5 deletions
diff --git a/stdlib/source/documentation/lux/data/product.lux b/stdlib/source/documentation/lux/data/product.lux
index a589fdd9c..cde31272a 100644
--- a/stdlib/source/documentation/lux/data/product.lux
+++ b/stdlib/source/documentation/lux/data/product.lux
@@ -24,21 +24,21 @@
($.definition /.curried
"Converts a 2-argument function into nested single-argument functions."
- [(curried f)])
+ ($.example (curried f)))
($.definition /.uncurried
"Converts nested single-argument functions into a 2-argument function."
- [(uncurried f)])
+ ($.example (uncurried f)))
($.definition /.swapped
""
- [(swapped [left right])])
+ ($.example (swapped [left right])))
($.definition /.then
"Apply functions to both sides of a pair."
- [(then f g)])
+ ($.example (then f g)))
($.definition /.forked
"Yields a pair by applying both functions to a single value."
- [(forked f g)])
+ ($.example (forked f g)))
))