Skip to content

Commit ba45764

Browse files
committed
Auto merge of #12067 - cuishuang:master, r=weihanglo
Remove repeated definite articles Remove repeated definite articles
2 parents c455de9 + 825c75a commit ba45764

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

Diff for: crates/home/src/env.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ use std::{
99
/// Permits parameterizing the home functions via the _from variants - used for
1010
/// in-process unit testing by rustup.
1111
pub trait Env {
12-
/// Return the path to the the users home dir, or None if any error occurs:
12+
/// Return the path to the users home dir, or None if any error occurs:
1313
/// see home_inner.
1414
fn home_dir(&self) -> Option<PathBuf>;
1515
/// Return the current working directory.

Diff for: crates/mdman/doc/mdman.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ man page:
2828
and `{{/options}}` tags. This tells the processor where the options start
2929
and end.
3030
- Each option must be expressed with a `{{#option}}` block. The parameters to
31-
the the block are a sequence of strings indicating the option. For example,
31+
the block are a sequence of strings indicating the option. For example,
3232
```{{#option "`-p` _spec_..." "`--package` _spec_..."}}``` is an option that
3333
has two different forms. The text within the string is processed as markdown.
3434
It is recommended to use formatting similar to this example.

Diff for: crates/mdman/doc/out/mdman.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ and end.
2929
.sp
3030
.RS 4
3131
\h'-04'\(bu\h'+02'Each option must be expressed with a \fB{{#option}}\fR block. The parameters to
32-
the the block are a sequence of strings indicating the option. For example,
32+
the block are a sequence of strings indicating the option. For example,
3333
\fB{{#option "`\-p` _spec_..." "`\-\-package` _spec_..."}}\fR is an option that
3434
has two different forms. The text within the string is processed as markdown.
3535
It is recommended to use formatting similar to this example.

Diff for: crates/mdman/doc/out/mdman.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ man page:
2727
and `{{/options}}` tags. This tells the processor where the options start
2828
and end.
2929
- Each option must be expressed with a `{{#option}}` block. The parameters to
30-
the the block are a sequence of strings indicating the option. For example,
30+
the block are a sequence of strings indicating the option. For example,
3131
```{{#option "`-p` _spec_..." "`--package` _spec_..."}}``` is an option that
3232
has two different forms. The text within the string is processed as markdown.
3333
It is recommended to use formatting similar to this example.

Diff for: crates/mdman/doc/out/mdman.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ DESCRIPTION
2525
the options start and end.
2626

2727
o Each option must be expressed with a {{#option}} block. The
28-
parameters to the the block are a sequence of strings indicating the
28+
parameters to the block are a sequence of strings indicating the
2929
option. For example, {{#option "`-p` _spec_..." "`--package`
3030
_spec_..."}} is an option that has two different forms. The text
3131
within the string is processed as markdown. It is recommended to use

Diff for: src/doc/src/reference/semver.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -871,7 +871,7 @@ fn main() {
871871
It is safe to change a generic type to a more generic one. For example, the
872872
following adds a generic parameter that defaults to the original type, which
873873
is safe because all existing users will be using the same type for both
874-
fields, the the defaulted parameter does not need to be specified.
874+
fields, the defaulted parameter does not need to be specified.
875875

876876
```rust,ignore
877877
// MINOR CHANGE

Diff for: src/doc/src/reference/unstable.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1260,7 +1260,7 @@ codegen-backend = "cranelift"
12601260

12611261
* Tracking Issue: [#11813](https://github.com/rust-lang/cargo/issues/11813)
12621262

1263-
With the 'gitoxide' unstable feature, all or the the specified git operations will be performed by
1263+
With the 'gitoxide' unstable feature, all or the specified git operations will be performed by
12641264
the `gitoxide` crate instead of `git2`.
12651265

12661266
While `-Zgitoxide` enables all currently implemented features, one can individually select git operations

0 commit comments

Comments
 (0)