diff options
| author | Katze <binary@benary.org> | 2016-03-17 20:15:22 +0100 |
|---|---|---|
| committer | benaryorg <binary@benary.org> | 2016-03-17 20:33:01 +0100 |
| commit | a6e077ebdfe55741e69375de3f22e964b678c22b (patch) | |
| tree | e6c377f09a110c52cf302eeb655728da3ed91cf0 | |
| parent | be989acabd0d566aeb2a76b760ccafdd1187f202 (diff) | |
| download | rust-a6e077ebdfe55741e69375de3f22e964b678c22b.tar.gz rust-a6e077ebdfe55741e69375de3f22e964b678c22b.zip | |
documentation fix in RELEASES.md
f32 should probably be denoted as 0.0 as it might improve readability. Signed-off-by: benaryorg <binary@benary.org>
| -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 |
