aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux/control/concatenative.lux
diff options
context:
space:
mode:
authorEduardo Julian2021-08-27 20:59:34 -0400
committerEduardo Julian2021-08-27 20:59:34 -0400
commitc5b61d2f46ac19bf511197f3a537c4be0f47df33 (patch)
treecd62d188403e9b3998ba293dc5308719a430f1fe /stdlib/source/documentation/lux/control/concatenative.lux
parente814f667aed509a70bd386dcd54628929134def4 (diff)
Updates to the Ruby compiler.
Diffstat (limited to 'stdlib/source/documentation/lux/control/concatenative.lux')
-rw-r--r--stdlib/source/documentation/lux/control/concatenative.lux8
1 files changed, 4 insertions, 4 deletions
diff --git a/stdlib/source/documentation/lux/control/concatenative.lux b/stdlib/source/documentation/lux/control/concatenative.lux
index 6c97e056f..a1163c241 100644
--- a/stdlib/source/documentation/lux/control/concatenative.lux
+++ b/stdlib/source/documentation/lux/control/concatenative.lux
@@ -21,13 +21,13 @@
(documentation: /.=>
"Concatenative function types."
[(=> [Nat] [Nat])]
- [(All [a]
+ [(All (_ a)
(-> a (=> [] [a])))]
- [(All [t]
+ [(All (_ t)
(=> [t] []))]
- [(All [a b c]
+ [(All (_ a b c)
(=> [a b c] [b c a]))]
- [(All [___a ___z]
+ [(All (_ ___a ___z)
(=> {then (=> ___a ___z)
else (=> ___a ___z)}
___a [Bit then else] ___z))])