From a6e077ebdfe55741e69375de3f22e964b678c22b Mon Sep 17 00:00:00 2001 From: Katze Date: Thu, 17 Mar 2016 20:15:22 +0100 Subject: [PATCH] documentation fix in RELEASES.md f32 should probably be denoted as 0.0 as it might improve readability. Signed-off-by: benaryorg --- RELEASES.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RELEASES.md b/RELEASES.md index 97edaa122eff9..a5e307ac0d018 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::()` returns `Err`, not `Ok(0)`. +* [Parsing "." as a float results in an error instead of 0][1.7p]. + That is, `".".parse::()` 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