aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/data/collection/sequence.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/library/lux/data/collection/sequence.lux')
-rw-r--r--stdlib/source/library/lux/data/collection/sequence.lux6
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/source/library/lux/data/collection/sequence.lux b/stdlib/source/library/lux/data/collection/sequence.lux
index 2c8fdadaa..74654008c 100644
--- a/stdlib/source/library/lux/data/collection/sequence.lux
+++ b/stdlib/source/library/lux/data/collection/sequence.lux
@@ -244,8 +244,8 @@
(exception: .public [a] (index_out_of_bounds [sequence (Sequence a)
index Nat])
(exception.report
- "Size" (# n.decimal encoded (the #size sequence))
- "Index" (# n.decimal encoded index)))
+ "Size" (at n.decimal encoded (the #size sequence))
+ "Index" (at n.decimal encoded index)))
(exception: base_was_not_found)
@@ -445,7 +445,7 @@
[#level (the #level xs)
#size (the #size xs)
#root (let [... TODO: This binding was established to get around a compilation error. Fix and inline!
- $ (# node_functor each $)]
+ $ (at node_functor each $)]
(|> xs (the #root) (array.each $)))
#tail (|> xs (the #tail) (array.each $))]))