diff options
Diffstat (limited to 'stdlib/source/library/lux/data/collection/sequence.lux')
-rw-r--r-- | stdlib/source/library/lux/data/collection/sequence.lux | 6 |
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 86558bbb1..72d48f6f1 100644 --- a/stdlib/source/library/lux/data/collection/sequence.lux +++ b/stdlib/source/library/lux/data/collection/sequence.lux @@ -270,8 +270,8 @@ (All (_ of) (Exception [(Sequence of) Nat])) (exception.report - (.list ["Size" (at n.decimal encoded (the #size sequence))] - ["Index" (at n.decimal encoded index)]))) + (.list ["Size" (of n.decimal encoded (the #size sequence))] + ["Index" (of n.decimal encoded index)]))) (exception.def base_was_not_found) @@ -497,7 +497,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! - $ (at node_functor each $)] + $ (of node_functor each $)] (|> xs (the #root) (array.each $))) #tail (|> xs (the #tail) (array.each $))]))) |