From f24e7a0052352dd6fe9d8a9dd0e8764c5c6bbcac Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Thu, 15 Sep 2022 09:43:51 -0400 Subject: [PATCH] Add trailing period to help message --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index b2830a253d..baf52a96c4 100644 --- a/src/main.rs +++ b/src/main.rs @@ -61,7 +61,7 @@ struct Cli { /// Like --exclude, but adds additional files and directories on top of the excluded ones. #[clap(long, multiple = true)] extend_exclude: Vec, - /// Output formatting of linting messages + /// Output serialization format for error messages. #[clap(long, arg_enum, default_value_t=SerializationFormat::Text)] format: SerializationFormat, }