Skip to content

Commit d4258b1

Browse files
committed
fix(cli): Remove stray character on disallowed words
1 parent a3bf84a commit d4258b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/typos-cli/src/bin/typos-cli/report.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ fn print_long_correction(msg: &Typo, palette: Palette) -> Result<(), std::io::Er
231231
handle,
232232
"{:#}: {:#}",
233233
palette.error("error"),
234-
palette.strong(format_args!("`{}` is disallowed`", msg.typo))
234+
palette.strong(format_args!("`{}` is disallowed", msg.typo))
235235
)?;
236236
}
237237
typos::Status::Corrections(corrections) => {

0 commit comments

Comments
 (0)