Skip to content

Commit 20068db

Browse files
fix-typos
1 parent b9716dd commit 20068db

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lintcheck/src/config.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use std::path::PathBuf;
44

55
#[derive(Parser, Clone, Debug)]
66
#[command(args_conflicts_with_subcommands = true)]
7-
pub(crate) struct LintcheckConfig {
7+
pub(crate) struct LintCheckConfig {
88
/// Number of threads to use (default: all unless --fix or --recursive)
99
#[clap(
1010
long = "jobs",
@@ -87,9 +87,9 @@ impl OutputFormat {
8787
}
8888
}
8989

90-
impl LintcheckConfig {
90+
impl LintCheckConfig {
9191
pub fn new() -> Self {
92-
let mut config = LintcheckConfig::parse();
92+
let mut config = LintCheckConfig::parse();
9393

9494
// for the path where we save the lint results, get the filename without extension (so for
9595
// wasd.toml, use "wasd"...)

0 commit comments

Comments
 (0)