From c1dec4de7695c16c83ed39fce9b1846915a83272 Mon Sep 17 00:00:00 2001 From: Nate Cook Date: Wed, 15 Apr 2020 14:24:25 -0500 Subject: [PATCH] Fix some minor typos --- Documentation/04 Customizing Help.md | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Documentation/04 Customizing Help.md b/Documentation/04 Customizing Help.md index ade5a2275..c6dd54620 100644 --- a/Documentation/04 Customizing Help.md +++ b/Documentation/04 Customizing Help.md @@ -121,7 +121,7 @@ hello! ## Modifying the Help Flag Names -Users can see the help screen for a command by passing either `-h` or `--help` flag, by default. If you need to use one of those flags for another purpose, you can provide alternative names when configuring a root command. +Users can see the help screen for a command by passing either the `-h` or the `--help` flag, by default. If you need to use one of those flags for another purpose, you can provide alternative names when configuring a root command. ```swift struct Example: ParsableCommand { @@ -157,7 +157,7 @@ OPTIONS: You may want to suppress features under development or experimental flags from the generated help screen. You can hide an argument or a subcommand by passing `shouldDisplay: false` to the property wrapper or `CommandConfiguration` initializers, respectively. -`ArgumentHelp` include a `.hidden` static property that makes it even simpler to hide arguments: +`ArgumentHelp` includes a `.hidden` static property that makes it even simpler to hide arguments: ```swift struct Example: ParsableCommand { @@ -165,6 +165,3 @@ struct Example: ParsableCommand { var experimentalEnableWidgets: Bool } ``` - - -