From 39aacd82722ffb45206010615d404d8dbb3b12fb Mon Sep 17 00:00:00 2001 From: Kian-Meng Ang Date: Thu, 8 May 2025 23:45:34 +0800 Subject: [PATCH] Fix typo Found via `typos --hidden --format brief` --- src/options.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/options.rs b/src/options.rs index a5b29da40..a7729c53b 100644 --- a/src/options.rs +++ b/src/options.rs @@ -228,7 +228,7 @@ json: Output the results as a machine-readable JSON array with an element per fi .value_parser(["on", "off"]) .default_value("on") .action(ArgAction::Set) - .help("Remove any carriage return characters before diffing. This can be helpful when dealing with files on Windows that contain CRLF, i.e. `\\r\\n`.\n\nWhen disabled, difftastic will consider multiline string literals (in code) or mutiline text (e.g. in HTML) to differ if the two input files have different line endings.") + .help("Remove any carriage return characters before diffing. This can be helpful when dealing with files on Windows that contain CRLF, i.e. `\\r\\n`.\n\nWhen disabled, difftastic will consider multiline string literals (in code) or multiline text (e.g. in HTML) to differ if the two input files have different line endings.") ) .arg( Arg::new("check-only").long("check-only")