fix(cli): Remove stray character on disallowed words

This commit is contained in:
Ed Page 2023-08-07 16:24:33 -05:00
parent a3bf84ade6
commit d4258b1aa0

View file

@ -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) => {