Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion aztec/src/utils/array/subarray.nr
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ mod test {

#[test]
unconstrained fn subarray_into_empty() {
// In all of these cases we're setting DST_LEN to be 0, so we always get back an emtpy array.
// In all of these cases we're setting DST_LEN to be 0, so we always get back an empty array.
assert_eq(subarray([], 0), []);
assert_eq(subarray([1, 2, 3, 4, 5], 0), []);
assert_eq(subarray([1, 2, 3, 4, 5], 2), []);
Expand Down