Skip to content

Commit 3516206

Browse files
committed
Auto merge of #11221 - arlosi:fixci, r=weihanglo
Fix rustdoc warning about unclosed HTML tag nightly rustdoc is warning about `<name>` being an unclosed HTML tag. Fix by using backticks instead of single quotes.
2 parents 83a1f66 + c99e973 commit 3516206

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cargo/util/toml/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ pub struct DetailedTomlDependency<P: Clone = String> {
381381
package: Option<String>,
382382
public: Option<bool>,
383383

384-
/// One ore more of 'bin', 'cdylib', 'staticlib', 'bin:<name>'.
384+
/// One or more of `bin`, `cdylib`, `staticlib`, `bin:<name>`.
385385
artifact: Option<StringOrVec>,
386386
/// If set, the artifact should also be a dependency
387387
lib: Option<bool>,

0 commit comments

Comments
 (0)