aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/target/lua.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/library/lux/target/lua.lux')
-rw-r--r--stdlib/source/library/lux/target/lua.lux6
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/source/library/lux/target/lua.lux b/stdlib/source/library/lux/target/lua.lux
index f334dbc83..9ececec5f 100644
--- a/stdlib/source/library/lux/target/lua.lux
+++ b/stdlib/source/library/lux/target/lua.lux
@@ -47,13 +47,13 @@
(All (_ brand) (Equivalence (Code brand)))
(def: (= reference subject)
- (# text.equivalence = (representation reference) (representation subject))))
+ (at text.equivalence = (representation reference) (representation subject))))
(implementation: .public hash
(All (_ brand) (Hash (Code brand)))
(def: equivalence ..equivalence)
- (def: hash (|>> representation (# text.hash hash))))
+ (def: hash (|>> representation (at text.hash hash))))
(def: .public manual
(-> Text Code)
@@ -100,7 +100,7 @@
(-> Int Literal)
... Integers must be turned into hexadecimal to avoid quirks in how Lua parses integers.
... In particular, the number -9223372036854775808 will be incorrectly parsed as a float by Lua.
- (.let [to_hex (# n.hex encoded)]
+ (.let [to_hex (at n.hex encoded)]
(|>> .nat
to_hex
(format "0x")