From 7d2c57d34584b80612bfe73588b1f392ab6b02cc Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Mon, 23 Sep 2024 15:35:00 +1000 Subject: [PATCH] Soften wording on MSRV Currently we use the word "always" in the MSRV docs, we mean to say "there are no set of features that will break the build" but this usage of "always" may be interpreted as "always, for all time" which is definitely not what we mean. Soften the wording on MSRV by removing the word always. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c8b8ee335..f5e09e65f 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,7 @@ For more information please see [`CONTRIBUTING.md`](./CONTRIBUTING.md). ## Minimum Supported Rust Version (MSRV) -This library should always compile with any combination of features on **Rust 1.63.0**. +This library should compile with any combination of features on **Rust 1.63.0**. Use `Cargo-minimal.lock` to build the MSRV by copying to `Cargo.lock` and building.