Skip to content

Commit 87084c1

Browse files
committed
remove duplicate words
1 parent 5a46025 commit 87084c1

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

crates/cargo-util-schemas/src/manifest/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ impl TomlPackage {
285285
#[derive(Serialize, Copy, Clone, Debug)]
286286
#[serde(untagged)]
287287
pub enum InheritableField<T> {
288-
/// The type that that is used when not inheriting from a workspace.
288+
/// The type that is used when not inheriting from a workspace.
289289
Value(T),
290290
/// The type when inheriting from a workspace.
291291
Inherit(TomlInheritedField),
@@ -582,7 +582,7 @@ impl From<WorkspaceValue> for bool {
582582
#[derive(Serialize, Clone, Debug)]
583583
#[serde(untagged)]
584584
pub enum InheritableDependency {
585-
/// The type that that is used when not inheriting from a workspace.
585+
/// The type that is used when not inheriting from a workspace.
586586
Value(TomlDependency),
587587
/// The type when inheriting from a workspace.
588588
Inherit(TomlInheritedDependency),

crates/mdman/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "mdman"
33
version = "0.0.0"
44
edition.workspace = true
55
license.workspace = true
6-
description = "Creates a man page page from markdown."
6+
description = "Creates a man page from markdown."
77
publish = false
88

99
[dependencies]

src/cargo/core/registry.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ impl<'gctx> PackageRegistry<'gctx> {
237237
}
238238

239239
// If the previous source has the same precise version as we do,
240-
// then we're done, otherwise we need to need to move forward
240+
// then we're done, otherwise we need to move forward
241241
// updating this source.
242242
Some((previous, _)) => {
243243
if previous.has_same_precise_as(namespace) {

src/doc/contrib/src/process/unstable.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ and give feedback begins:
7777
- This could be on the tracking issue or in a dedicated issue for feedback
7878
- e.g. [workspace inheritance testing notes]
7979
2. Call for testing
80-
- In the RFC, link to the test instructions and label it with with `call-for-testing` to be picked up by [This Week in Rust]
80+
- In the RFC, link to the test instructions and label it with `call-for-testing` to be picked up by [This Week in Rust]
8181
- If there is not an RFC, a pull request should be made to the [TWiR repo]
8282
adding the feature to the `Call for Testing` section ([example]).
8383
- Post on various Rust communities ([rust subreddit], [users], [internals], etc)

tests/testsuite/git_shallow.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ fn gitoxide_shallow_clone_followed_by_non_shallow_update() -> anyhow::Result<()>
443443

444444
assert_eq!(
445445
max_history_depth, 3,
446-
"we see the previous shallow checkout as well as new new unshallow one"
446+
"we see the previous shallow checkout as well as new unshallow one"
447447
);
448448

449449
Ok(())

0 commit comments

Comments
 (0)