Skip to content

Commit

Permalink
Merge pull request #144 from SShrike/patch-1
Browse files Browse the repository at this point in the history
docs: fixes typos
  • Loading branch information
kbknapp committed Jun 30, 2015
2 parents 4728dd6 + 3e8891c commit d55c021
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ enum DidYouMeanMessageStyle {
/// displaying the help information from --help or -h")
/// .get_matches();
///
/// // Your pogram logic starts here...
/// // Your program logic starts here...
/// ```
pub struct App<'a, 'v, 'ab, 'u, 'h, 'ar> {
// The name displayed to the user when showing version and help/usage information
Expand Down Expand Up @@ -324,14 +324,14 @@ impl<'a, 'v, 'ab, 'u, 'h, 'ar> App<'a, 'v, 'ab, 'u, 'h, 'ar>{
}

/// Sets a custom help message and overrides the auto-generated one. This should only be used
/// when the auto-gererated message does not suffice.
/// when the auto-generated message does not suffice.
///
/// This will be displayed to the user when they use the defailt `--help` or `-h`
/// This will be displayed to the user when they use the default `--help` or `-h`
///
/// **NOTE:** This replaces the **entire** help message, so nothing will be auto-gererated.
/// **NOTE:** This replaces the **entire** help message, so nothing will be auto-generated.
///
/// **NOTE:** This **only** replaces the help message for the current command, meaning if you
/// are using subcommands, those help messages will still be auto-gererated unless you
/// are using subcommands, those help messages will still be auto-generated unless you
/// specify a `.help()` for them as well.
///
///
Expand Down

0 comments on commit d55c021

Please sign in to comment.