mirror of
https://github.com/clap-rs/clap
synced 2024-11-11 07:14:15 +00:00
docs(examples): Remove reference to non-existent example
This commit is contained in:
parent
11537b24a5
commit
2df043655f
2 changed files with 2 additions and 2 deletions
|
@ -5,7 +5,7 @@ fn main() {
|
|||
// far less verbose that shown in 01b_QuickExample.rs, but is more readable. The downside is you cannot set
|
||||
// the more advanced configuration options using this method (well...actually you can, you'll see ;) )
|
||||
//
|
||||
// The example below is functionally identical to the 01b_quick_example.rs and 01c_quick_example.rs
|
||||
// The example below is functionally identical to the 01b_quick_example.rs
|
||||
//
|
||||
// Create an application with 5 possible arguments (2 auto generated) and 2 subcommands (1 auto generated)
|
||||
// - A config file
|
||||
|
|
|
@ -4,7 +4,7 @@ fn main() {
|
|||
// This method shows the traditional, and slightly more configurable way to set up arguments. This method is
|
||||
// more verbose, but allows setting more configuration options, and even supports easier dynamic generation.
|
||||
//
|
||||
// The example below is functionally identical to the 01a_quick_example.rs and 01c_quick_example.rs
|
||||
// The example below is functionally identical to the 01a_quick_example.rs
|
||||
//
|
||||
// *NOTE:* You can actually achieve the best of both worlds by using Arg::from() (instead of Arg::new())
|
||||
// and *then* setting any additional properties.
|
||||
|
|
Loading…
Reference in a new issue