Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Draft
Changes from 1 commit
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
Prev Previous commit
more clippy
  • Loading branch information
Jack O'Connor committed Aug 17, 2025
commit 78d10eb351edca2074d6c423728b860ebca51aa7
2 changes: 1 addition & 1 deletion vm/src/builtins/list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ fn do_sort(
items.sort_unstable_by(|a, b| cmp(&a.1, &b.1));
*values = items.into_iter().map(|(val, _)| val).collect();
} else {
values.sort_unstable_by(cmp(a, b));
values.sort_unstable_by(cmp);
}

// After the sort is done, check if an error was captured.
Expand Down
Loading