From c99e9732f95329e6191a51296067e9b6f8d927d7 Mon Sep 17 00:00:00 2001 From: Arlo Siemsen Date: Wed, 12 Oct 2022 10:07:15 -0500 Subject: [PATCH] Use backticks instead of single quotes to fix rustdoc CI --- src/cargo/util/toml/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cargo/util/toml/mod.rs b/src/cargo/util/toml/mod.rs index c5ce10eca25..c378a4408c1 100644 --- a/src/cargo/util/toml/mod.rs +++ b/src/cargo/util/toml/mod.rs @@ -381,7 +381,7 @@ pub struct DetailedTomlDependency { package: Option, public: Option, - /// One ore more of 'bin', 'cdylib', 'staticlib', 'bin:'. + /// One or more of `bin`, `cdylib`, `staticlib`, `bin:`. artifact: Option, /// If set, the artifact should also be a dependency lib: Option,