Skip to content

Commit ef6d4c5

Browse files
committed
Remove repeated definite articles
Signed-off-by: cui fliter <[email protected]>
1 parent 20d90b1 commit ef6d4c5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

library/core/src/macros/panic.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ the successful result of some computation, `Ok(T)`, or error types that
4242
represent an anticipated runtime failure mode of that computation, `Err(E)`.
4343
`Result` is used alongside user defined types which represent the various
4444
anticipated runtime failure modes that the associated computation could
45-
encounter. `Result` must be propagated manually, often with the the help of the
45+
encounter. `Result` must be propagated manually, often with the help of the
4646
`?` operator and `Try` trait, and they must be reported manually, often with
4747
the help of the `Error` trait.
4848

tests/debuginfo/thread.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Testing the the display of JoinHandle and Thread in cdb.
1+
// Testing the display of JoinHandle and Thread in cdb.
22

33
// cdb-only
44
// min-cdb-version: 10.0.18317.1001

tests/ui/generic-associated-types/self-outlives-lint.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ trait MultipleMethods {
189189
}
190190

191191
// We would normally require `Self: 'a`, but we can prove that `Self: 'static`
192-
// because of the the bounds on the trait, so the bound is proven
192+
// because of the bounds on the trait, so the bound is proven
193193
trait Trait: 'static {
194194
type Assoc<'a>;
195195
fn make_assoc(_: &u32) -> Self::Assoc<'_>;

0 commit comments

Comments
 (0)