Skip to content

Commit 23f3d3b

Browse files
committed
Merge BlockstreamResearch#285: fix: Clippy workspace
55c3a90 fix: Clippy workspace (Christian Lewe) Pull request description: Check clippy for the entire workspace and fix a lint. ACKs for top commit: apoelstra: ACK 55c3a90; successfully ran local tests Tree-SHA512: dd9b7876fbd22c4c38141bd61aa7904afa82852b1bf67e3b4923a15d816e3d18627e73f92f15aadb518352aa286aa251d4ec092ccc810e4c3e67c48a60823cf1
2 parents dec0639 + 55c3a90 commit 23f3d3b

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)