Skip to content

Commit 55c3a90

Browse files
committed
fix: Clippy workspace
Check clippy for the entire workspace and fix a lint.
1 parent dec0639 commit 55c3a90

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ jobs:
100100
with:
101101
components: clippy
102102
- name: Running cargo clippy
103-
run: cargo clippy --all-targets -- --deny warnings
103+
run: cargo clippy --workspace --all-targets -- --deny warnings
104104

105105
test-other-platforms:
106106
name: Test

fuzz/fuzz_lib/lib.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -241,8 +241,7 @@ impl<'f> Extractor<'f> {
241241
}
242242

243243
/// Attempt to yield a value from the fuzzer by constructing a type and then
244-
245-
/// Attempt to yield a value from the fuzzer by constructing it directly.
244+
/// attempt to yield a value from the fuzzer by constructing it directly.
246245
pub fn extract_old_value_direct(&mut self) -> Option<OldValue> {
247246
const MAX_N_TASKS: usize = 300;
248247
const MAX_TY_WIDTH: usize = 10240;

0 commit comments

Comments
 (0)