Rollup merge of #32319 - benaryorg:patch-3, r=alexcrichton

documentation fix in RELEASES.md

f32 should probably be denoted as 0.0 as it might improve readability.
This commit is contained in:
Eduard-Mihai Burtescu 2016-03-19 12:30:01 +02:00
commit 472fe10652
1 changed files with 2 additions and 2 deletions

View File

@ -116,8 +116,8 @@ Compatibility Notes
that were not intended. In this release, [defaulted type parameters that were not intended. In this release, [defaulted type parameters
appearing outside of type definitions will generate a appearing outside of type definitions will generate a
warning][1.7d], which will become an error in future releases. warning][1.7d], which will become an error in future releases.
* [Parsing "." as a float results in an error instead of * [Parsing "." as a float results in an error instead of 0][1.7p].
0][1.7p]. That is, `".".parse::<f32>()` returns `Err`, not `Ok(0)`. That is, `".".parse::<f32>()` returns `Err`, not `Ok(0.0)`.
* [Borrows of closure parameters may not outlive the closure][1.7bc]. * [Borrows of closure parameters may not outlive the closure][1.7bc].
[1.7a]: https://github.com/rust-lang/rust/pull/30928 [1.7a]: https://github.com/rust-lang/rust/pull/30928