From 30e6cd192aaac01761670a1623a55db4de675962 Mon Sep 17 00:00:00 2001 From: Simon Egersand Date: Sat, 30 Jun 2018 00:31:57 +0200 Subject: [PATCH] Fix formatting in README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3f73cb45..60cbcf7d 100644 --- a/README.md +++ b/README.md @@ -408,14 +408,14 @@ To try out the pre-built examples, use the following steps: * Compile the example `$ cargo build --example ` * Run the help info `$ ./target/debug/examples/ --help` * Play with the arguments! -* You can also do a onetime run via `$ cargo run --example -- [args to example] +* You can also do a onetime run via `$ cargo run --example -- [args to example]` ### BYOB (Build Your Own Binary) To test out `clap`'s default auto-generated help/version follow these steps: * Create a new cargo project `$ cargo new fake --bin && cd fake` * Add `clap` to your `Cargo.toml` -* + ```toml [dependencies] clap = "3.0.0-alpha1"