Skip to content

Commit 3df1071

Browse files
authored
comment,doc: modified some documentation comments (#46)
1 parent 6834237 commit 3df1071

File tree

3 files changed

+23
-7
lines changed

3 files changed

+23
-7
lines changed

src/errors/opt_err.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ pub enum InvalidOption {
9090
/// The store key of the option configuration that caused this error.
9191
store_key: String,
9292

93-
/// The option name that caused this error.
93+
/// The duplicated name of the option configuration.
9494
name: String,
9595
},
9696

src/lib.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -545,8 +545,8 @@ impl<'b, 'a> Cmd<'a> {
545545
/// Returns the option argument with the specified name.
546546
///
547547
/// If the option has multiple arguments, this method returns the first argument.
548-
/// If the option a boolean flag, this method returns [None].
549-
/// If the option is not specified in the command line argument, the return value
548+
/// If the option is a boolean flag, this method returns [None].
549+
/// If the option is not specified in the command line arguments, the return value
550550
/// of this method is [None].
551551
pub fn opt_arg(&'a self, name: &str) -> Option<&'a str> {
552552
if let Some(opt_vec) = self.opts.get(name) {
@@ -560,8 +560,8 @@ impl<'b, 'a> Cmd<'a> {
560560
/// Returns the option arguments with the specified name.
561561
///
562562
/// If the option has one or multiple arguments, this method returns an array of the arguments.
563-
/// If the option a boolean flag, this method returns an empty vector.
564-
/// If the option is not specified in the command line argument, the return value
563+
/// If the option is a boolean flag, this method returns an empty vector.
564+
/// If the option is not specified in the command line arguments, the return value
565565
/// of this method is [None].
566566
pub fn opt_args(&'a self, name: &str) -> Option<&'a [&'a str]> {
567567
match self.opts.get(name) {

src/parse/parse_with.rs

+18-2
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,21 @@ impl<'b, 'a> Cmd<'a> {
2121
/// An option configuration has fields: `store_key`, `names`, `has_arg`, `is_array`,
2222
/// `defaults`, `desc`, `arg_in_help`, and `validator`.
2323
///
24+
/// When an option matches one of the `names` in the option configurations, the option is
25+
/// registered into [Cmd] with `store_key`.
26+
/// If both `has_arg` and `is_array` is false, the optioin can have only one option argument,
27+
/// otherwise the option cannot have option arguments.
28+
/// If `defaults` field is specified and no option value is given in command line arguments,
29+
/// the value of `defaults` is set as the option arguments.
30+
///
31+
/// If options not declared in option configurations are given in command line arguments, this
32+
/// method basicaly returns [UnconfiguredOption] error.
33+
/// However, if you want to allow other ooptions, add an option configuration of which
34+
/// `store_key` or the first element of `names` is "*".
35+
///
2436
/// The ownership of the vector of option configurations which is passed as an argument of
25-
/// this method is moved to this method and set to the public field `cfgs` of [Cmd] instance.
26-
/// If you want to access the option configurations after parsing, get them from this field.
37+
/// this method is moved to this method and set into this [Cmd] instance.
38+
/// It can be retrieved with its method: [Cmd::opt_cfgs].
2739
///
2840
/// ```
2941
/// use cliargs::{Cmd, OptCfg};
@@ -74,6 +86,10 @@ impl<'b, 'a> Cmd<'a> {
7486
/// This method parses command line arguments in the same way as the [Cmd::parse_with] method,
7587
/// except that it only parses the command line arguments before the first command argument.
7688
///
89+
/// The ownership of the vector of option configurations which is passed as an argument of
90+
/// this method is moved to this method and set into this [Cmd] instance.
91+
/// It can be retrieved with its method: [Cmd::opt_cfgs].
92+
///
7793
/// ```
7894
/// use cliargs::{Cmd, OptCfg};
7995
/// use cliargs::OptCfgParam::{names, has_arg, defaults, validator, desc, arg_in_help};

0 commit comments

Comments
 (0)