mirror of
https://github.com/clap-rs/clap
synced 2024-12-14 14:52:33 +00:00
Merge pull request #2232 from Riptide3/fix-readme
docs(README.md): remove unused import in "Using Builder Pattern" example
This commit is contained in:
commit
3520a30b6e
1 changed files with 1 additions and 1 deletions
|
@ -250,7 +250,7 @@ The next example shows a far less verbose method, but sacrifices some of the adv
|
||||||
//
|
//
|
||||||
// This example demonstrates clap's "usage strings" method of creating arguments
|
// This example demonstrates clap's "usage strings" method of creating arguments
|
||||||
// which is less verbose
|
// which is less verbose
|
||||||
use clap::{Arg, App};
|
use clap::App;
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
let matches = App::new("myapp")
|
let matches = App::new("myapp")
|
||||||
|
|
Loading…
Reference in a new issue