Skip to content

Commit

Permalink
Unrolled build for rust-lang#129437
Browse files Browse the repository at this point in the history
Rollup merge of rust-lang#129437 - gurry:fix-diagnostic-typo, r=jieyouxu

Fix typo in a help diagnostic

Replaced "**the your** dependency graph" with "**in the** dependency graph".
  • Loading branch information
rust-timer authored Aug 23, 2024
2 parents c8b14ba + b544603 commit 120e5f7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1693,7 +1693,7 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {
StringPart::highlighted("multiple different versions".to_string()),
StringPart::normal(" of crate `".to_string()),
StringPart::highlighted(format!("{name}")),
StringPart::normal("` the your dependency graph".to_string()),
StringPart::normal("` in the dependency graph".to_string()),
],
);
let candidates = if impl_candidates.is_empty() {
Expand Down
2 changes: 1 addition & 1 deletion tests/run-make/crate-loading/rmake.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ fn main() {
| |
| required by a bound introduced by this call
|
help: there are multiple different versions of crate `dependency` the your dependency graph
help: there are multiple different versions of crate `dependency` in the dependency graph
--> multiple-dep-versions.rs:1:1
|
1 | extern crate dep_2_reexport;
Expand Down

0 comments on commit 120e5f7

Please sign in to comment.