about summary refs log tree commit diff
path: root/compiler/rustc_error_codes
diff options
context:
space:
mode:
authorOliver Killane <44177991+OliverKillane@users.noreply.github.com>2024-05-15 00:07:21 +0100
committerGitHub <noreply@github.com>2024-05-15 00:07:21 +0100
commita5d0988a88a7557d4ae507fecd4df3d9ed8ad839 (patch)
treeca45e80cfc4037051c2fd729dd06707df820d2e6 /compiler/rustc_error_codes
parentf3dcf65985dd956595a3f14dcb2a3052daceeb73 (diff)
downloadrust-a5d0988a88a7557d4ae507fecd4df3d9ed8ad839.tar.gz
rust-a5d0988a88a7557d4ae507fecd4df3d9ed8ad839.zip
Update compiler/rustc_error_codes/src/error_codes/E0582.md
Co-authored-by: Felix S Klock II <pnkfelix@pnkfx.org>
Diffstat (limited to 'compiler/rustc_error_codes')
-rw-r--r--compiler/rustc_error_codes/src/error_codes/E0582.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_error_codes/src/error_codes/E0582.md b/compiler/rustc_error_codes/src/error_codes/E0582.md
index 31927cd5fe3..26b65b12bc9 100644
--- a/compiler/rustc_error_codes/src/error_codes/E0582.md
+++ b/compiler/rustc_error_codes/src/error_codes/E0582.md
@@ -42,7 +42,7 @@ where
     f: F
 }
 ```
-This is as `Foo::Assoc<'a>` could be implemented by a type that does not use
+The latter scenario encounters this error because `Foo::Assoc<'a>` could be implemented by a type that does not use
 the `'a` parameter, so there is no guarentee that `X::Assoc<'a>` actually uses
 `'a`.