mirror of
https://github.com/crate-ci/typos.git
synced 2024-12-22 23:52:12 -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,
|
||||
"{:#}: {:#}",
|
||||
palette.error("error"),
|
||||
palette.strong(format_args!("`{}` is disallowed`", msg.typo))
|
||||
palette.strong(format_args!("`{}` is disallowed", msg.typo))
|
||||
)?;
|
||||
}
|
||||
typos::Status::Corrections(corrections) => {
|
||||
|
|
Loading…
Reference in a new issue