mirror of
https://github.com/crate-ci/typos.git
synced 2025-01-10 16:54:51 -05:00
fix(cli): Remove stray character on disallowed words
This commit is contained in:
parent
a3bf84ade6
commit
d4258b1aa0
1 changed files with 1 additions and 1 deletions
|
@ -231,7 +231,7 @@ fn print_long_correction(msg: &Typo, palette: Palette) -> Result<(), std::io::Er
|
||||||
handle,
|
handle,
|
||||||
"{:#}: {:#}",
|
"{:#}: {:#}",
|
||||||
palette.error("error"),
|
palette.error("error"),
|
||||||
palette.strong(format_args!("`{}` is disallowed`", msg.typo))
|
palette.strong(format_args!("`{}` is disallowed", msg.typo))
|
||||||
)?;
|
)?;
|
||||||
}
|
}
|
||||||
typos::Status::Corrections(corrections) => {
|
typos::Status::Corrections(corrections) => {
|
||||||
|
|
Loading…
Reference in a new issue