1795: Remove extern crate from README r=pksunkara a=pickfire



Co-authored-by: Ivan Tham <pickfire@riseup.net>
This commit is contained in:
bors[bot] 2020-04-08 20:27:32 +00:00 committed by GitHub
commit 89a47640c6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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() {