From 6f385b4adbef825b0e3c26a663549f45436c8267 Mon Sep 17 00:00:00 2001 From: William Yao Date: Mon, 3 Jul 2017 14:49:01 -0500 Subject: [PATCH] add missing backticks (oops) --- structopt-derive/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/structopt-derive/src/lib.rs b/structopt-derive/src/lib.rs index a29b7628..bc104669 100644 --- a/structopt-derive/src/lib.rs +++ b/structopt-derive/src/lib.rs @@ -206,6 +206,7 @@ //! //! A nested subcommand can be marked optional: //! +//! ```ignore //! #[derive(StructOpt)] //! #[structopt(name = "foo")] //! struct Foo { @@ -220,6 +221,7 @@ //! Baz {}, //! Quux {} //! } +//! ``` extern crate proc_macro; extern crate syn;