Skip to content

Commit a42d00c

Browse files
committed
Auto merge of #9821 - steffahn:a_an, r=Eh2406
Fix typos “a”→“an” See rust-lang/rust#88230
2 parents 216f915 + 5c9d614 commit a42d00c

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

src/cargo/core/resolver/conflict_cache.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ impl ConflictStoreTrie {
8585
} else {
8686
// We are at the end of the set we are adding, there are three cases for what to do
8787
// next:
88-
// 1. `self` is a empty dummy Node inserted by `or_insert_with`
88+
// 1. `self` is an empty dummy Node inserted by `or_insert_with`
8989
// in witch case we should replace it with `Leaf(con)`.
9090
// 2. `self` is a `Node` because we previously inserted a superset of
9191
// the thing we are working on (I don't know if this happens in practice)

src/cargo/core/resolver/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -609,7 +609,7 @@ fn activate(
609609
cx.age += 1;
610610
if let Some((parent, dep)) = parent {
611611
let parent_pid = parent.package_id();
612-
// add a edge from candidate to parent in the parents graph
612+
// add an edge from candidate to parent in the parents graph
613613
cx.parents
614614
.link(candidate_pid, parent_pid)
615615
// and associate dep with that edge
@@ -700,7 +700,7 @@ struct BacktrackFrame {
700700
#[derive(Clone)]
701701
struct RemainingCandidates {
702702
remaining: RcVecIter<Summary>,
703-
// This is a inlined peekable generator
703+
// This is an inlined peekable generator
704704
has_another: Option<Summary>,
705705
}
706706

src/cargo/core/resolver/types.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ impl Ord for DepsFrame {
205205
}
206206
}
207207

208-
/// Note that a `OrdSet` is used for the remaining dependencies that need
208+
/// Note that an `OrdSet` is used for the remaining dependencies that need
209209
/// activation. This set is sorted by how many candidates each dependency has.
210210
///
211211
/// This helps us get through super constrained portions of the dependency

src/cargo/ops/tree/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ pub fn build_and_print(ws: &Workspace<'_>, opts: &TreeOptions) -> CargoResult<()
207207
.iter()
208208
.map(|p| PackageIdSpec::parse(p))
209209
.map(|r| {
210-
// Provide a error message if pkgid is not within the resolved
210+
// Provide an error message if pkgid is not within the resolved
211211
// dependencies graph.
212212
r.and_then(|spec| spec.query(ws_resolve.targeted_resolve.iter()).and(Ok(spec)))
213213
})

src/cargo/sources/git/utils.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ pub struct GitDatabase {
5454

5555
/// `GitCheckout` is a local checkout of a particular revision. Calling
5656
/// `clone_into` with a reference will resolve the reference into a revision,
57-
/// and return a `anyhow::Error` if no revision for that reference was found.
57+
/// and return an `anyhow::Error` if no revision for that reference was found.
5858
#[derive(Serialize)]
5959
pub struct GitCheckout<'a> {
6060
database: &'a GitDatabase,

src/cargo/sources/registry/index.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -685,7 +685,7 @@ impl Summaries {
685685
// * `2`: Added the "index format version" field so that if the index format
686686
// changes, different versions of cargo won't get confused reading each
687687
// other's caches.
688-
// * `3`: Bumped the version to work around a issue where multiple versions of
688+
// * `3`: Bumped the version to work around an issue where multiple versions of
689689
// a package were published that differ only by semver metadata. For
690690
// example, openssl-src 110.0.0 and 110.0.0+1.1.0f. Previously, the cache
691691
// would be incorrectly populated with two entries, both 110.0.0. After

src/cargo/util/config/mod.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -188,14 +188,14 @@ pub struct Config {
188188
/// This should be false if:
189189
/// - this is an artifact of the rustc distribution process for "stable" or for "beta"
190190
/// - this is an `#[test]` that does not opt in with `enable_nightly_features`
191-
/// - this is a integration test that uses `ProcessBuilder`
191+
/// - this is an integration test that uses `ProcessBuilder`
192192
/// that does not opt in with `masquerade_as_nightly_cargo`
193193
/// This should be true if:
194194
/// - this is an artifact of the rustc distribution process for "nightly"
195195
/// - this is being used in the rustc distribution process internally
196196
/// - this is a cargo executable that was built from source
197197
/// - this is an `#[test]` that called `enable_nightly_features`
198-
/// - this is a integration test that uses `ProcessBuilder`
198+
/// - this is an integration test that uses `ProcessBuilder`
199199
/// that called `masquerade_as_nightly_cargo`
200200
/// It's public to allow tests use nightly features.
201201
/// NOTE: this should be set before `configure()`. If calling this from an integration test,
@@ -836,7 +836,7 @@ impl Config {
836836
Ok(())
837837
}
838838

839-
/// Low-level method for getting a config value as a `OptValue<HashMap<String, CV>>`.
839+
/// Low-level method for getting a config value as an `OptValue<HashMap<String, CV>>`.
840840
///
841841
/// NOTE: This does not read from env. The caller is responsible for that.
842842
fn get_table(&self, key: &ConfigKey) -> CargoResult<OptValue<HashMap<String, CV>>> {

0 commit comments

Comments
 (0)