You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// `Arg::required(true)` such as `--config <FILE>` = `Arg::value_name("FILE")` and/// `Arg::required(true)
and clippy is confused by the missing(?) trailing "`":
warning: you should put `Arg::required(true` between ticks in the documentation
--> src/main.rs:2:6
|
2 | /// `Arg::required(true)
| ^^^^^^^^^^^^^^^^^^
|
= note: #[warn(doc_markdown)] on by default
= help: for further information visit https://rust-lang-nursery.github.io/rust-clippy/v0.0.186/index.html#doc_markdown
`Arg::required(true` is not what we want I think... :)
clap-rs has code like this:
and clippy is confused by the missing(?) trailing "`":
`Arg::required(true`
is not what we want I think... :)source code: https://github.com/kbknapp/clap-rs/blob/03e413d7175d35827cd7d8908d47dbae15a849a3/src/macros.rs#L610
The text was updated successfully, but these errors were encountered: