mirror of
https://github.com/clap-rs/clap
synced 2025-01-18 23:53:54 +00:00
Merge #1795
1795: Remove extern crate from README r=pksunkara a=pickfire Co-authored-by: Ivan Tham <pickfire@riseup.net>
This commit is contained in:
commit
89a47640c6
1 changed files with 0 additions and 2 deletions
|
@ -246,7 +246,6 @@ This second method shows a method using the 'Builder Pattern' which allows more
|
|||
//
|
||||
// This example demonstrates clap's "builder pattern" method of creating arguments
|
||||
// which the most flexible, but also most verbose.
|
||||
extern crate clap;
|
||||
use clap::{Arg, App, SubCommand};
|
||||
|
||||
fn main() {
|
||||
|
@ -288,7 +287,6 @@ 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
|
||||
// which is less verbose
|
||||
extern crate clap;
|
||||
use clap::{Arg, App, SubCommand};
|
||||
|
||||
fn main() {
|
||||
|
|
Loading…
Reference in a new issue