aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux.lux
diff options
context:
space:
mode:
authorEduardo Julian2022-06-04 19:34:42 -0400
committerEduardo Julian2022-06-04 19:34:42 -0400
commitf9e33ae96aec4741385a576719786092c9e68043 (patch)
tree140057dfc054346eab721f9905f0f0fff22ad933 /stdlib/source/documentation/lux.lux
parent56d2835d35093e2d92c5e8a4371aa322b55e037b (diff)
De-sigil-ification: #
Diffstat (limited to 'stdlib/source/documentation/lux.lux')
-rw-r--r--stdlib/source/documentation/lux.lux12
1 files changed, 6 insertions, 6 deletions
diff --git a/stdlib/source/documentation/lux.lux b/stdlib/source/documentation/lux.lux
index 8969f1dcd..2f5090611 100644
--- a/stdlib/source/documentation/lux.lux
+++ b/stdlib/source/documentation/lux.lux
@@ -565,8 +565,8 @@
"Opens a implementation and generates a definition for each of its members (including nested members)."
[(open: "i:[0]" order)
"=>"
- (def: i:= (# order =))
- (def: i:< (# order <))])
+ (def: i:= (at order =))
+ (def: i:< (at order <))])
(documentation: /.|>>
"Similar to the piping macro, but rather than taking an initial object to work on, creates a function for taking it."
@@ -607,9 +607,9 @@
(documentation: /.#
"Allows accessing the value of a implementation's member."
- [(# codec encoded)]
+ [(at codec encoded)]
["Also allows using that value as a function."
- (# codec encoded +123)])
+ (at codec encoded +123)])
(documentation: /.has
"Sets the value of a record at a given tag."
@@ -701,7 +701,7 @@
[<tests> (template [<function> <parameter> <expected>]
[(cover [<function>]
(compare <text>
- (# codec encoded <function> <parameter>)))]
+ (at codec encoded <function> <parameter>)))]
[bit #1 "#1"]
[int +123 "+123"]
@@ -790,7 +790,7 @@
... [(def: (hash (^let set [member_hash _]))
... (list#mix (function (_ elem acc)
... (+ acc
-... (# member_hash hash elem)))
+... (at member_hash hash elem)))
... 0
... (set.list set)))])