about summary refs log tree commit diff
path: root/compiler/rustc_error_codes/src
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2024-09-06 06:42:23 +0000
committerbors <bors@rust-lang.org>2024-09-06 06:42:23 +0000
commit0903724a9b839bb642ce537ababe6625e8887c4f (patch)
treea327c16521758286ea353293be72e4104cba2442 /compiler/rustc_error_codes/src
parent18d358c63c7ae8ff9d921f3464707bedb23254d2 (diff)
parent2fccb4b358e06c9c33d1ed18b280aa1a776c2f36 (diff)
downloadrust-0903724a9b839bb642ce537ababe6625e8887c4f.tar.gz
rust-0903724a9b839bb642ce537ababe6625e8887c4f.zip
Auto merge of #3862 - rust-lang:rustup-2024-09-06, r=RalfJung
Automatic Rustup
Diffstat (limited to 'compiler/rustc_error_codes/src')
-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 b2cdb509c95..c4aaa17706a 100644
--- a/compiler/rustc_error_codes/src/error_codes/E0582.md
+++ b/compiler/rustc_error_codes/src/error_codes/E0582.md
@@ -44,7 +44,7 @@ where
 ```
 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`.
+guarantee that `X::Assoc<'a>` actually uses `'a`.
 
 To fix this we can pass a dummy parameter:
 ```