about summary refs log tree commit diff
diff options
context:
space:
mode:
authorapiraino <apiraino@users.noreply.github.com>2024-08-22 09:19:22 +0200
committerGitHub <noreply@github.com>2024-08-22 09:19:22 +0200
commit87e4b6789c43c44f07211defbd8c036bc0245562 (patch)
treebf0fc2d8a4e2ea32fd68c64103704af52151a281
parent7613eee55ea9fc0bdaff6bb482cc0650a5bf3e9a (diff)
downloadrust-87e4b6789c43c44f07211defbd8c036bc0245562.tar.gz
rust-87e4b6789c43c44f07211defbd8c036bc0245562.zip
Update RELEASES.md
Co-authored-by: Josh Stone <cuviper@gmail.com>
-rw-r--r--RELEASES.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/RELEASES.md b/RELEASES.md
index 852af4389ea..5e4827be4ec 100644
--- a/RELEASES.md
+++ b/RELEASES.md
@@ -143,8 +143,8 @@ Compatibility Notes
 - [Turn `proc_macro_back_compat` lint into a hard error.](https://github.com/rust-lang/rust/pull/125596/)
 - [Detect unused structs even when implementing private traits](https://github.com/rust-lang/rust/pull/122382/)
 - [`std::sync::ReentrantLockGuard<T>` is no longer `Sync` if `T: !Sync`](https://github.com/rust-lang/rust/pull/125527) which means [`std::io::StdoutLock` and `std::io::StderrLock` are no longer Sync](https://github.com/rust-lang/rust/issues/127340)
-- [Type inference will fail in some cases due to a new impl of FromIterator for Box<str>](https://github.com/rust-lang/rust/pull/99969/)
-  Notably this breaks versions of the `time` crate before 0.3.36, due to no longer inferring the right impl.
+- [Type inference will fail in some cases due to new implementations of `FromIterator for Box<str>`.](https://github.com/rust-lang/rust/pull/99969/)
+  Notably, this breaks versions of the `time` crate before 0.3.35, due to no longer inferring the implementation for `Box<[_]>`.
 
 <a id="1.80-Internal-Changes"></a>