🌐 AI搜索 & 代理 主页
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
Next Next commit
POC: cargo clippy
  • Loading branch information
Jack O'Connor committed Aug 17, 2025
commit 9b3871d3603eea28744df81c2e84aef3d064e8f1
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(|a, b| cmp(a, b));
values.sort_unstable_by(cmp(a, b));
}

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