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
//!//! This crate frequently uses a trait bound like the following where subprocess//! commands are required://!//! ```none,actually-rust-but-see-https://github.com/rust-lang/rust/issues/63193//! T where//! T: IntoIterator,//! T::Item: Into<OsString>//! ```//!//! You can understand this as://! - `T` is anything that can turn into an iterator//! - the iterator type is anything that can turn into an `OsString`//!
Gets turned into:
This crate frequently uses a trait bound like the following where subprocess
commands are required:
```none,actually-rust-but-see-https://github.com/rust-lang/rust/issues/63193T where T: IntoIterator, T::Item: Into<OsString>```rustYou can understand this as:- `T` is anything that can turn into an iterator- the iterator type is anything that can turn into an `OsString`
The trailing ```rust should not be there. cargo doc seems to do the right thing, by comparison.
Using cargo-readme v3.2.0 on Rust 1.59.0 + Ubuntu 21.10.
The text was updated successfully, but these errors were encountered:
this also happens with using no-run in example code in documentation, such as in lib.rs
I think adding support for no-run is helpful.
It does not add it when I use sh
The following doc comment:
Gets turned into:
The trailing
```rust
should not be there.cargo doc
seems to do the right thing, by comparison.Using cargo-readme v3.2.0 on Rust 1.59.0 + Ubuntu 21.10.
The text was updated successfully, but these errors were encountered: