Skip to content

Commit 365ca5d

Browse files
authored
fix(add): use the possessive in error message
1 parent f8d488a commit 365ca5d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bin/cargo/commands/add.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ fn parse_dependencies(config: &Config, matches: &ArgMatches) -> CargoResult<Vec<
256256
)
257257
})
258258
.collect::<Vec<_>>();
259-
anyhow::bail!("feature `{feature}` must be qualified by the dependency its being activated for, like {}", candidates.join(", "));
259+
anyhow::bail!("feature `{feature}` must be qualified by the dependency it's being activated for, like {}", candidates.join(", "));
260260
}
261261
crates
262262
.first_mut()

0 commit comments

Comments
 (0)