docs(README.md): remove unused import in "Using Builder Pattern" example

This commit is contained in:
Riptide3 2020-11-29 16:10:22 +08:00
parent ad9f97f402
commit 8b631d5db3

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")