From 484c9704ec99007865092224a456fefd4970e8f1 Mon Sep 17 00:00:00 2001 From: Andy Lester Date: Mon, 25 Nov 2024 15:54:35 -0600 Subject: [PATCH] Fix a typo from issue GH#8 --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index c6ec89a..cf5a3e7 100644 --- a/src/main.rs +++ b/src/main.rs @@ -104,7 +104,7 @@ struct Options { /// Set the number of line breaks after a query #[clap(short, long, default_value = "2")] lines_between_queries: u8, - /// Enforce a tailing newline at the end of the file + /// Enforce a trailing newline at the end of the file. #[clap(short = 'n', long, default_value = "false")] trailing_newline: bool, }