From 3403a8e401d305d858a4607eac0b7a9708eb1b5f Mon Sep 17 00:00:00 2001 From: Mihir Gadgil Date: Mon, 22 Jan 2024 18:32:57 -0500 Subject: [PATCH] Fix some typos --- .../2024-01-03-this-development-cycle-in-cargo-1-76.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/posts/inside-rust/2024-01-03-this-development-cycle-in-cargo-1-76.md b/posts/inside-rust/2024-01-03-this-development-cycle-in-cargo-1-76.md index caf0fc247..98db16796 100644 --- a/posts/inside-rust/2024-01-03-this-development-cycle-in-cargo-1-76.md +++ b/posts/inside-rust/2024-01-03-this-development-cycle-in-cargo-1-76.md @@ -25,7 +25,7 @@ The Cargo team has been working to scale our processes to allow the number of pa - We are hoping that we can improve the contributor experience with smaller packages (faster to build and test) with clearer boundaries (easier to reason about) -We've had a couple breakages affecting people over the last while that we reflected on. Examples include: +We've had a couple of breakages affecting people over the last year while we reflected on some recent regressions. Examples include: - When making future-incompatible updates to the output of `cargo metadata`, not coordinating with the third-party `cargo_metadata` API ([oli-obk/cargo_metadata#240](https://github.com/oli-obk/cargo_metadata/issues/240)) - Confusion over dependencies on `cargo-credential` causing non-working dependency trees when building these packages from the crates.io ([rust-lang/cargo#13004](https://github.com/rust-lang/cargo/pull/13004)) @@ -301,9 +301,9 @@ But not having dependencies participate would be inconsistent. Discussing the prior art of `[profile]` also led to a discussion of having more than one set of values you can inherit from. We discussed a couple of ideas, including -- Having named sets of that you inherit all-or-nothing (`inherits = "public-members"`) +- Having named sets of fields that you inherit all-or-nothing (`inherits = "public-members"`) - Having named fields that you can inherit per-field (`rust-version.workspace = "public-members"`) -- Naming other packages you can to inherit from, either whole or per field +- Naming other packages you can inherit from, either whole or per field