diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2024-08-23 12:32:17 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-23 12:32:17 +0200 |
| commit | 09b37855f65f1b16e9930593ac4e39f32ad742f4 (patch) | |
| tree | 10b18caeb1dcd9131e2d2d3442a97f8d8801d7b7 /compiler/rustc_trait_selection/src | |
| parent | db65b6c544dc33583047ae266ef028ab1b0f4c64 (diff) | |
| parent | b544603c039ae15e322f9fb4ae527873601426fd (diff) | |
| download | rust-09b37855f65f1b16e9930593ac4e39f32ad742f4.tar.gz rust-09b37855f65f1b16e9930593ac4e39f32ad742f4.zip | |
Rollup merge of #129437 - gurry:fix-diagnostic-typo, r=jieyouxu
Fix typo in a help diagnostic Replaced "**the your** dependency graph" with "**in the** dependency graph".
Diffstat (limited to 'compiler/rustc_trait_selection/src')
| -rw-r--r-- | compiler/rustc_trait_selection/src/error_reporting/traits/fulfillment_errors.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_trait_selection/src/error_reporting/traits/fulfillment_errors.rs b/compiler/rustc_trait_selection/src/error_reporting/traits/fulfillment_errors.rs index d1cc630bc9a..9f0282319ec 100644 --- a/compiler/rustc_trait_selection/src/error_reporting/traits/fulfillment_errors.rs +++ b/compiler/rustc_trait_selection/src/error_reporting/traits/fulfillment_errors.rs @@ -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() { |
