aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/data/binary.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/test/lux/data/binary.lux4
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/source/test/lux/data/binary.lux b/stdlib/source/test/lux/data/binary.lux
index a9e977c0a..638668ec5 100644
--- a/stdlib/source/test/lux/data/binary.lux
+++ b/stdlib/source/test/lux/data/binary.lux
@@ -53,11 +53,11 @@
(def: (binary_io power read write value)
(-> Nat (-> Nat Binary (Try Nat)) (-> Nat Nat Binary (Try Any)) Nat Bit)
- (let [bytes (i64.left_shift power 1)
+ (let [bytes (i64.left_shifted power 1)
binary (/.create bytes)
cap (case bytes
8 (dec 0)
- _ (|> 1 (i64.left_shift (n.* 8 bytes)) dec))
+ _ (|> 1 (i64.left_shifted (n.* 8 bytes)) dec))
capped_value (i64.and cap value)]
(and (..succeed
(do try.monad