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,doc: modified some documentation comments #46

Merged
merged 1 commit into from
Sep 15, 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
2 changes: 1 addition & 1 deletion src/errors/opt_err.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ pub enum InvalidOption {
/// The store key of the option configuration that caused this error.
store_key: String,

/// The option name that caused this error.
/// The duplicated name of the option configuration.
name: String,
},

Expand Down
8 changes: 4 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -545,8 +545,8 @@ impl<'b, 'a> Cmd<'a> {
/// Returns the option argument with the specified name.
///
/// If the option has multiple arguments, this method returns the first argument.
/// If the option a boolean flag, this method returns [None].
/// If the option is not specified in the command line argument, the return value
/// If the option is a boolean flag, this method returns [None].
/// If the option is not specified in the command line arguments, the return value
/// of this method is [None].
pub fn opt_arg(&'a self, name: &str) -> Option<&'a str> {
if let Some(opt_vec) = self.opts.get(name) {
Expand All @@ -560,8 +560,8 @@ impl<'b, 'a> Cmd<'a> {
/// Returns the option arguments with the specified name.
///
/// If the option has one or multiple arguments, this method returns an array of the arguments.
/// If the option a boolean flag, this method returns an empty vector.
/// If the option is not specified in the command line argument, the return value
/// If the option is a boolean flag, this method returns an empty vector.
/// If the option is not specified in the command line arguments, the return value
/// of this method is [None].
pub fn opt_args(&'a self, name: &str) -> Option<&'a [&'a str]> {
match self.opts.get(name) {
Expand Down
20 changes: 18 additions & 2 deletions src/parse/parse_with.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,21 @@ impl<'b, 'a> Cmd<'a> {
/// An option configuration has fields: `store_key`, `names`, `has_arg`, `is_array`,
/// `defaults`, `desc`, `arg_in_help`, and `validator`.
///
/// When an option matches one of the `names` in the option configurations, the option is
/// registered into [Cmd] with `store_key`.
/// If both `has_arg` and `is_array` is false, the optioin can have only one option argument,
/// otherwise the option cannot have option arguments.
/// If `defaults` field is specified and no option value is given in command line arguments,
/// 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
/// `store_key` or the first element of `names` is "*".
///
/// The ownership of the vector of option configurations which is passed as an argument of
/// this method is moved to this method and set to the public field `cfgs` of [Cmd] instance.
/// If you want to access the option configurations after parsing, get them from this field.
/// this method is moved to this method and set into this [Cmd] instance.
/// It can be retrieved with its method: [Cmd::opt_cfgs].
///
/// ```
/// use cliargs::{Cmd, OptCfg};
Expand Down Expand Up @@ -74,6 +86,10 @@ impl<'b, 'a> Cmd<'a> {
/// This method parses command line arguments in the same way as the [Cmd::parse_with] method,
/// except that it only parses the command line arguments before the first command argument.
///
/// The ownership of the vector of option configurations which is passed as an argument of
/// this method is moved to this method and set into this [Cmd] instance.
/// It can be retrieved with its method: [Cmd::opt_cfgs].
///
/// ```
/// use cliargs::{Cmd, OptCfg};
/// use cliargs::OptCfgParam::{names, has_arg, defaults, validator, desc, arg_in_help};
Expand Down