summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Fackler <sfackler@palantir.com>2020-05-31 14:51:08 -0400
committerGitHub <noreply@github.com>2020-05-31 14:51:08 -0400
commit0a71ba22430c5ca9ca19db1ee03c378e8b1da73c (patch)
tree7947f4278f2b4b959ecd438034df1fefb9e52e0c
parentf6072cab136beea206b7cfe79f8d10fccf5af591 (diff)
downloadrust-sfackler-patch-1.tar.gz
Fix release notes for niche initialization changesfackler-patch-1
MaybeUninit is not affected by the linked PR.
-rw-r--r--RELEASES.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/RELEASES.md b/RELEASES.md
index 7cba27e134a..100993bb75c 100644
--- a/RELEASES.md
+++ b/RELEASES.md
@@ -100,8 +100,8 @@ Compatibility Notes
source file rather than the previous format of `<NAME macros>`.][70969]
**Note:** this may not point a file that actually exists on the user's system.
- [The minimum required external LLVM version has been bumped to LLVM 8.][71147]
-- [`mem::{zeroed, uninitialised, MaybeUninit}` will now panic when used with types
- that do not allow zero initialization such as `NonZeroU8`.][66059] This was
+- [`mem::{zeroed, uninitialised}` will now panic when used with types that do
+ not allow zero initialization such as `NonZeroU8`.][66059] This was
previously a warning.
- [In 1.45.0 (the next release) converting a `f64` to `u32` using the `as`
operator has been defined as a saturating operation.][71269] This was previously