summary refs log tree commit diff
path: root/RELEASES.md
diff options
context:
space:
mode:
authorMark Rousskov <mark.simulacrum@gmail.com>2025-06-22 08:15:15 -0400
committerGitHub <noreply@github.com>2025-06-22 08:15:15 -0400
commit43084f8c05a2c1873974f28b631b603776f7f68f (patch)
tree2676183da6d280a49706b6e304047a35d3d335f0 /RELEASES.md
parentcddf2589d9bde633a600aa5111c7f7317a2b0813 (diff)
downloadrust-43084f8c05a2c1873974f28b631b603776f7f68f.tar.gz
rust-43084f8c05a2c1873974f28b631b603776f7f68f.zip
Indicate change is coming in the next release.
Co-authored-by: 许杰友 Jieyou Xu (Joe) <39484203+jieyouxu@users.noreply.github.com>
Diffstat (limited to 'RELEASES.md')
-rw-r--r--RELEASES.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/RELEASES.md b/RELEASES.md
index fd47317c754..8a6bb214d2d 100644
--- a/RELEASES.md
+++ b/RELEASES.md
@@ -13,7 +13,7 @@ Language
   This allows using boolean literals as `cfg` predicates, e.g. `#[cfg(true)]` and `#[cfg(false)]`.
 - [Fully de-stabilize the `#[bench]` attribute](https://github.com/rust-lang/rust/pull/134273). Usage of `#[bench]` without `#![feature(custom_test_frameworks)]` already triggered a deny-by-default future-incompatibility lint since Rust 1.77, but will now become a hard error.
 - [Add warn-by-default `dangerous_implicit_autorefs` lint against implicit autoref of raw pointer dereference.](https://github.com/rust-lang/rust/pull/123239)
-  The lint [may be bumped to deny-by-default](https://github.com/rust-lang/rust/pull/141661) in a future version of Rust.
+  The lint [will be bumped to deny-by-default](https://github.com/rust-lang/rust/pull/141661) in the next version of Rust.
 - [Add `invalid_null_arguments` lint to prevent invalid usage of null pointers.](https://github.com/rust-lang/rust/pull/119220)
   This lint is uplifted from `clippy::invalid_null_ptr_usage`.
 - [Change trait impl candidate preference for builtin impls and trivial where-clauses.](https://github.com/rust-lang/rust/pull/138176)