diff --git a/src/parse/parse.rs b/src/parse/parse.rs index 726221b..abe6fcb 100644 --- a/src/parse/parse.rs +++ b/src/parse/parse.rs @@ -800,9 +800,8 @@ mod tests_of_parse_until_sub_cmd { assert_eq!(cmd.opt_arg("f#o"), None); } - #[test] + #[test] // for the fix of issue #39 fn test_if_sub_command_is_like_path() { - // for the fix of issue #39 let ui_args = vec![ "/path/to/app".to_string(), "--foo-bar".to_string(), diff --git a/src/parse/parse_for.rs b/src/parse/parse_for.rs index 974d1d3..d3799e0 100644 --- a/src/parse/parse_for.rs +++ b/src/parse/parse_for.rs @@ -39,14 +39,14 @@ pub fn make_opt_cfgs_for(opt_store: &mut T) -> Vec { } impl<'b> Cmd<'_> { - /// Parses command line arguments and set their option values to the option store which is - /// passed as an argument. + /// Parses command line arguments and set their option values to the fields of the option store + /// which is passed as the argument of this method. /// /// This method divides command line arguments to command arguments and options, then sets - /// each option value to a curresponding field of the option store. + /// each option value to a corresponding field of the option store. /// /// Within this method, a vector of [OptCfg] is made from the fields of the option store. - /// This [OptCfg] vector is set into [Cmd] instance. + /// This [OptCfg] vector is set into this [Cmd] instance. /// If you want to access this option configurations, get them by `opt_cfgs` method. /// /// An option configuration corresponding to each field of an option store is determined by @@ -68,8 +68,8 @@ impl<'b> Cmd<'_> { /// If you want to specify multiple option names, separate them with commas. /// If you want to specify multiple default values, separate them with commas and round them /// with square brackets, like `[1,2,3]`. - /// If you want to use your favorite carachter as a separator, you can use it by putting it on - /// the left side of the open square bracket, like `/[1/2/3]`. + /// If you want to use your favorite character as a separator, you can use it by putting it + /// on the left side of the open square bracket, like `/[1/2/3]`. /// /// NOTE: A default value of empty string array option in a field attribute is `[]`, like /// `#[opt(cfg="=[]")]`, but it doesn't represent an array which contains only one empty @@ -114,7 +114,7 @@ impl<'b> Cmd<'_> { opt_store.set_field_values(&self.opts) } - /// Parse command line arguments until the first command argument and set their option values + /// Parses command line arguments until the first command argument and set their option values /// to the option store which is passed as an argument. /// /// This method creates and returns a new [Cmd] instance that holds the command line arguments diff --git a/src/parse/parse_with.rs b/src/parse/parse_with.rs index d00a942..4f365e2 100644 --- a/src/parse/parse_with.rs +++ b/src/parse/parse_with.rs @@ -29,8 +29,8 @@ impl<'b, 'a> Cmd<'a> { /// the value of `defaults` is set as the option arguments. /// /// If options not declared in option configurations are given in command line arguments, this - /// method basicaly returns [UnconfiguredOption] error. - /// However, if you want to allow other ooptions, add an option configuration of which + /// method basicaly returns [InvalidOption::UnconfiguredOption] error. + /// However, if you want to allow other options, add an option configuration of which /// `store_key` or the first element of `names` is "*". /// /// The ownership of the vector of option configurations which is passed as an argument of