about summary refs log tree commit diff
path: root/compiler/rustc_error_codes/src
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2025-05-01 22:27:19 +0200
committerGitHub <noreply@github.com>2025-05-01 22:27:19 +0200
commitc02964f446530af232d65957dfacb1c20bca65fb (patch)
tree3b2baa973cf75627bc612ac46235fbdcbb0f6bab /compiler/rustc_error_codes/src
parent3350c1eb3fd8fe1bee1ed4c76944d707bd256876 (diff)
parentcf26d82dafc95d73484b5688ccfc4eec8a9d3e52 (diff)
downloadrust-c02964f446530af232d65957dfacb1c20bca65fb.tar.gz
rust-c02964f446530af232d65957dfacb1c20bca65fb.zip
Rollup merge of #138703 - pudongair:master, r=workingjubilee
chore: remove redundant words in comment

remove redundant words in comment
Diffstat (limited to 'compiler/rustc_error_codes/src')
-rw-r--r--compiler/rustc_error_codes/src/error_codes/E0207.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_error_codes/src/error_codes/E0207.md b/compiler/rustc_error_codes/src/error_codes/E0207.md
index 5b35748f472..f80b0093ecc 100644
--- a/compiler/rustc_error_codes/src/error_codes/E0207.md
+++ b/compiler/rustc_error_codes/src/error_codes/E0207.md
@@ -195,7 +195,7 @@ impl<'a> Contains for Foo {
 Please note that unconstrained lifetime parameters are not supported if they are
 being used by an associated type.
 
-In cases where the associated type's lifetime is meant to be tied to the the
+In cases where the associated type's lifetime is meant to be tied to the
 self type, and none of the methods on the trait need ownership or different
 mutability, then an option is to implement the trait on a borrowed type: