about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDylan DPC <dylan.dpc@gmail.com>2020-06-05 13:07:06 +0200
committerGitHub <noreply@github.com>2020-06-05 13:07:06 +0200
commit27376d57b60178eb65f625b2bdcdb56aa90709e1 (patch)
treea7d575d4cb2293d7e76fd41cd1b26c813b923a21
parentd01f7ae125c05d93ac8d1f70ad770c11c82a6d68 (diff)
parent3c237987181b47026dc07513a8532677b374a5a3 (diff)
downloadrust-27376d57b60178eb65f625b2bdcdb56aa90709e1.tar.gz
rust-27376d57b60178eb65f625b2bdcdb56aa90709e1.zip
Rollup merge of #73010 - tshepang:patch-2, r=Mark-Simulacrum
Update RELEASES.md

try fix the f64 as u32 line
-rw-r--r--RELEASES.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/RELEASES.md b/RELEASES.md
index 8d6535b20c2..a37379330db 100644
--- a/RELEASES.md
+++ b/RELEASES.md
@@ -107,8 +107,8 @@ Compatibility Notes
   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
-  undefined behaviour, you can use the `{f64, f32}::to_int_unchecked` methods to
-  continue using the current behaviour which may desirable in rare performance
+  undefined behaviour, but you can use the `{f64, f32}::to_int_unchecked` methods to
+  continue using the current behaviour, which may be desirable in rare performance
   sensitive situations.
 
 Internal Only