From 9ecd1e6097a2899644a2807c0a06dc071bc7a44c Mon Sep 17 00:00:00 2001 From: Daniel Scherzer Date: Sat, 4 Oct 2025 20:23:16 -0700 Subject: [PATCH] this-development-cycle-in-cargo-1.90.md: fix typo "depednency" should be "dependency" --- content/inside-rust/this-development-cycle-in-cargo-1.90.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/inside-rust/this-development-cycle-in-cargo-1.90.md b/content/inside-rust/this-development-cycle-in-cargo-1.90.md index 360f9ff0f..81d193e55 100644 --- a/content/inside-rust/this-development-cycle-in-cargo-1.90.md +++ b/content/inside-rust/this-development-cycle-in-cargo-1.90.md @@ -353,7 +353,7 @@ This runs counter to the way the rest of Cargo works which creates warts in beha Some examples of problems with doctests are: - inability to run `cargo check` or `cargo clippy` on them - `cargo test --workspace` rebuilding doctests when there was no change -- cargo can't collect "unused depednency" messages from rustc to identify which dependencies are unused across all dev-dependencies +- cargo can't collect "unused dependency" messages from rustc to identify which dependencies are unused across all dev-dependencies This also affects future plans including: - Coverage reporting ([#13040](https://github.com/rust-lang/cargo/issues/13040))