diff options
| author | Eduard-Mihai Burtescu <edy.burt@gmail.com> | 2016-03-19 12:30:01 +0200 |
|---|---|---|
| committer | Eduard-Mihai Burtescu <edy.burt@gmail.com> | 2016-03-19 12:30:01 +0200 |
| commit | 472fe10652383f554416917fa14bd2537cbdfc2e (patch) | |
| tree | 4512cdd6c6e0e9ffd2350f683976eeb4a7436d09 | |
| parent | cb9b1b26c0d45067a50747bf8e5eca7c6b72d0b9 (diff) | |
| parent | a6e077ebdfe55741e69375de3f22e964b678c22b (diff) | |
| download | rust-472fe10652383f554416917fa14bd2537cbdfc2e.tar.gz rust-472fe10652383f554416917fa14bd2537cbdfc2e.zip | |
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.
| -rw-r--r-- | RELEASES.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/RELEASES.md b/RELEASES.md index 97edaa122ef..a5e307ac0d0 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -116,8 +116,8 @@ Compatibility Notes that were not intended. In this release, [defaulted type parameters appearing outside of type definitions will generate a warning][1.7d], which will become an error in future releases. -* [Parsing "." as a float results in an error instead of - 0][1.7p]. That is, `".".parse::<f32>()` returns `Err`, not `Ok(0)`. +* [Parsing "." as a float results in an error instead of 0][1.7p]. + That is, `".".parse::<f32>()` returns `Err`, not `Ok(0.0)`. * [Borrows of closure parameters may not outlive the closure][1.7bc]. [1.7a]: https://github.com/rust-lang/rust/pull/30928 |
