Skip to content

Commit 7338710

Browse files
committed
Fix typo
1 parent 490b2cc commit 7338710

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/tools/tidy/src/ext_tool_checks.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const REL_PY_PATH: &[&str] = &["bin", "python3"];
3434
const RUFF_CONFIG_PATH: &[&str] = &["src", "tools", "tidy", "config", "ruff.toml"];
3535
const BLACK_CONFIG_PATH: &[&str] = &["src", "tools", "tidy", "config", "black.toml"];
3636
/// Location within build directory
37-
const RUFF_CACH_PATH: &[&str] = &["cache", "ruff_cache"];
37+
const RUFF_CACHE_PATH: &[&str] = &["cache", "ruff_cache"];
3838
const PIP_REQ_PATH: &[&str] = &["src", "tools", "tidy", "config", "requirements.txt"];
3939

4040
pub fn check(
@@ -96,7 +96,7 @@ fn check_impl(
9696
let mut cfg_path = root_path.to_owned();
9797
cfg_path.extend(RUFF_CONFIG_PATH);
9898
let mut cache_dir = outdir.to_owned();
99-
cache_dir.extend(RUFF_CACH_PATH);
99+
cache_dir.extend(RUFF_CACHE_PATH);
100100

101101
cfg_args_ruff.extend([
102102
"--config".as_ref(),

0 commit comments

Comments
 (0)