Remove accidental double backticks (#3044)

diff --git a/crate_universe/src/context.rs b/crate_universe/src/context.rs
index fdcfb0f..905763f 100644
--- a/crate_universe/src/context.rs
+++ b/crate_universe/src/context.rs
@@ -46,7 +46,7 @@
     /// A list of crates visible to this bazel module.
     pub(crate) direct_dev_deps: BTreeSet<CrateId>,
 
-    /// A list of `[patch]`` entries from the Cargo.lock file which were not used in the resolve.
+    /// A list of `[patch]` entries from the Cargo.lock file which were not used in the resolve.
     // TODO: Remove the serde(default) after this has been released for a few versions.
     // This prevents previous lockfiles (from before this field) from failing to parse with the current version of rules_rust.
     // After we've supported this (so serialised it in lockfiles) for a few versions,
diff --git a/crate_universe/src/metadata/metadata_annotation.rs b/crate_universe/src/metadata/metadata_annotation.rs
index 4750ae9..7dffb42 100644
--- a/crate_universe/src/metadata/metadata_annotation.rs
+++ b/crate_universe/src/metadata/metadata_annotation.rs
@@ -175,7 +175,7 @@
     /// A mapping of crates/packages to additional source (network location) information.
     pub(crate) crates: BTreeMap<PackageId, SourceAnnotation>,
 
-    /// A list of `[patch]`` entries from the Cargo.lock file which were not used in the resolve.
+    /// A list of `[patch]` entries from the Cargo.lock file which were not used in the resolve.
     pub(crate) unused_patches: BTreeSet<cargo_lock::Dependency>,
 }