Merge pull request #144 from SShrike/patch-1

docs: fixes typos
This commit is contained in:
Kevin K. 2015-06-30 05:51:24 -04:00
commit d55c021528

View file

@ -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
@ -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.
///
///