Skip to content

Commit

Permalink
Remove accidental double backticks (#3044)
Browse files Browse the repository at this point in the history
  • Loading branch information
illicitonion authored Dec 5, 2024
1 parent 443b089 commit 94f3a8e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crate_universe/src/context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ pub(crate) struct Context {
/// 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,
Expand Down
2 changes: 1 addition & 1 deletion crate_universe/src/metadata/metadata_annotation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ pub(crate) struct LockfileAnnotation {
/// 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>,
}

Expand Down

0 comments on commit 94f3a8e

Please sign in to comment.