Skip to content

Commit e6c3a17

Browse files
committed
Auto merge of #6094 - kellytk:patch-1, r=dwijnand
Correct spelling (2)
2 parents 35cd245 + da03add commit e6c3a17

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/cargo/core/resolver/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1154,7 +1154,7 @@ fn check_duplicate_pkgs_in_lockfile(resolve: &Resolve) -> CargoResult<()> {
11541154
if let Some(prev_pkg_id) = unique_pkg_ids.insert(encodable_pkd_id, pkg_id) {
11551155
bail!(
11561156
"package collision in the lockfile: packages {} and {} are different, \
1157-
but only one can be written to lockfile unambigiously",
1157+
but only one can be written to lockfile unambiguously",
11581158
prev_pkg_id,
11591159
pkg_id
11601160
)

tests/testsuite/generate_lockfile.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,6 +226,6 @@ fn duplicate_entries_in_lockfile() {
226226
.with_stderr_contains(
227227
"[..]package collision in the lockfile: packages common [..] and \
228228
common [..] are different, but only one can be written to \
229-
lockfile unambigiously",
229+
lockfile unambiguously",
230230
).run();
231231
}

0 commit comments

Comments
 (0)