aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/documentation/lux.lux')
-rw-r--r--stdlib/source/documentation/lux.lux24
1 files changed, 12 insertions, 12 deletions
diff --git a/stdlib/source/documentation/lux.lux b/stdlib/source/documentation/lux.lux
index 31161cb4f..468fc588f 100644
--- a/stdlib/source/documentation/lux.lux
+++ b/stdlib/source/documentation/lux.lux
@@ -208,15 +208,15 @@
[(= (Tuple)
(And))])
-(documentation: /._$
+(documentation: /.left
"Left-association for the application of binary functions over variadic arguments."
- [(_$ text#composite "Hello, " name ". How are you?")
+ [(left text#composite "Hello, " name ". How are you?")
"=>"
(text#composite (text#composite "Hello, " name) ". How are you?")])
-(documentation: /.$_
+(documentation: /.all
"Right-association for the application of binary functions over variadic arguments."
- [($_ text#composite "Hello, " name ". How are you?")
+ [(all text#composite "Hello, " name ". How are you?")
"=>"
(text#composite "Hello, " (text#composite name ". How are you?"))])
@@ -353,7 +353,7 @@
[(case (is (List Int)
(list +1 +2 +3))
{#Item x {#Item y {#Item z {#End}}}}
- {#Some ($_ * x y z)}
+ {#Some (all * x y z)}
_
{#None})])
@@ -364,7 +364,7 @@
[(case (is (List Int)
(list +1 +2 +3))
(pattern (list x y z))
- {#Some ($_ * x y z)}
+ {#Some (all * x y z)}
_
{#None})])
@@ -711,9 +711,9 @@
[form (list (bit #1)) "(#1)"]
[tuple (list (bit #1)) "[#1]"]
)]
- ($_ and
- <tests>
- )))])
+ (all and
+ <tests>
+ )))])
(documentation: /.static
(format "Resolves the names of definitions to their values at compile-time, assuming their values are either:"
@@ -837,7 +837,7 @@
2
3
4)]
- ($_ + <operands>))])
+ (all + <operands>))])
(documentation: /.char
"If given a 1-character text literal, yields the char-code of the sole character."
@@ -936,8 +936,8 @@
..Tuple
..Or
..And
- .._$
- ..$_
+ ..left
+ ..all
..if
..Primitive
..`