Skip to content

Commit

Permalink
bump typos and fix new issues
Browse files Browse the repository at this point in the history
  • Loading branch information
klensy committed Jan 16, 2025
1 parent b356382 commit 3c21521
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/spellcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

- name: check typos
# sync version with src/tools/tidy/src/ext_tool_checks.rs
uses: crate-ci/typos@v1.28.2
uses: crate-ci/typos@v1.29.4
with:
# sync target files with src/tools/tidy/src/ext_tool_checks.rs
files: ./compiler ./library ./src/bootstrap ./src/librustdoc
Expand Down
2 changes: 1 addition & 1 deletion compiler/rustc_middle/src/mir/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ pub struct Body<'tcx> {
/// us to see the difference and forego optimization on the inlined promoted items.
pub phase: MirPhase,

/// How many passses we have executed since starting the current phase. Used for debug output.
/// How many passes we have executed since starting the current phase. Used for debug output.
pub pass_count: usize,

pub source: MirSource<'tcx>,
Expand Down
2 changes: 1 addition & 1 deletion src/tools/tidy/src/ext_tool_checks.rs
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ fn spellcheck_runner(args: &[&str]) -> Result<(), Error> {
"typos",
"spellcheck file checks",
// sync version with .github/workflows/ci.yml
Some("install tool via `cargo install typos-cli@1.28.2`".to_owned()),
Some("install tool via `cargo install typos-cli@1.29.4`".to_owned()),
));
}
Err(e) => return Err(e.into()),
Expand Down
1 change: 1 addition & 0 deletions typos.toml
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,5 @@ extend-ignore-re = [
"\"core::iter::adapters::Copie\"",
"-Ccontrol-flow-guard",
"concat!\\(\"CURRENT_RUSTC_VERSIO\", \"N\"\\)",
"\\*\\*v\\*\\*ariable"
]

0 comments on commit 3c21521

Please sign in to comment.