Skip to content
This repository was archived by the owner on Apr 15, 2026. It is now read-only.

Commit 3dc9770

Browse files
committed
fix clippy
1 parent af070ff commit 3dc9770

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,3 +67,4 @@ pattern_type_mismatch = { level = "allow", priority = 1 }
6767
std_instead_of_alloc = { level = "allow", priority = 1 }
6868
arbitrary_source_item_ordering = { level = "allow", priority = 1 }
6969
missing_inline_in_public_items = { level = "allow", priority = 1 }
70+
doc_paragraphs_missing_punctuation = { level = "allow", priority = 1 }

crates/xtask/src/main.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ enum Cli {
3636
},
3737
}
3838

39+
/// run some cmd
3940
fn cmd(args: impl IntoIterator<Item = impl AsRef<str>>) -> anyhow::Result<()> {
4041
let mut args = args.into_iter();
4142
let mut cmd = std::process::Command::new(args.next().context("no args")?.as_ref());

0 commit comments

Comments
 (0)