diff options
Diffstat (limited to 'stdlib/source/library/lux/data/collection/sequence.lux')
-rw-r--r-- | stdlib/source/library/lux/data/collection/sequence.lux | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/source/library/lux/data/collection/sequence.lux b/stdlib/source/library/lux/data/collection/sequence.lux index 2b2f92b94..f36cac720 100644 --- a/stdlib/source/library/lux/data/collection/sequence.lux +++ b/stdlib/source/library/lux/data/collection/sequence.lux @@ -246,8 +246,8 @@ (exception .public [a] (index_out_of_bounds [sequence (Sequence a) index Nat]) (exception.report - "Size" (at n.decimal encoded (the #size sequence)) - "Index" (at n.decimal encoded index))) + (.list ["Size" (at n.decimal encoded (the #size sequence))] + ["Index" (at n.decimal encoded index)]))) (exception base_was_not_found) |