* fixed wording in error message
1 files changed, 1 insertions(+), 1 deletions(-) M lib/scopes/Array.sc
M lib/scopes/Array.sc +1 -1
@@ 223,7 223,7 @@ typedef+ Array This operation offsets the index of each following element by -1. fn remove (self index) let &count = self._count - assert (index < &count) "can't pop from empty array" + assert (index < &count) "can't remove from empty array" &count -= 1 let items = self._items let result =