Merge pull request #2232 from Riptide3/fix-readme

docs(README.md): remove unused import in "Using Builder Pattern" example
This commit is contained in:
Pavan Kumar Sunkara 2020-11-29 09:01:22 +00:00 committed by GitHub
commit 3520a30b6e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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
// which is less verbose
use clap::{Arg, App};
use clap::App;
fn main() {
let matches = App::new("myapp")