Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

comment: modified some comments #49

Merged
merged 1 commit into from
Oct 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/parse/parse.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
Expand Down
14 changes: 7 additions & 7 deletions src/parse/parse_for.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@ pub fn make_opt_cfgs_for<T: OptStore>(opt_store: &mut T) -> Vec<OptCfg> {
}

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
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions src/parse/parse_with.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down