aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormrkn <mrkn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-12-15 16:08:33 +0000
committermrkn <mrkn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-12-15 16:08:33 +0000
commit8df336d2bb05035d048822bbab4a3e54ab557c94 (patch)
treebb729c96a2c48c1ad951d9c0d5138098c6290de5
parent25daea49d150671b8ee1d017178e553c4c0664fe (diff)
downloadruby-8df336d2bb05035d048822bbab4a3e54ab557c94.tar.gz
NEWS: Fix the default rounding mode
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57086 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--NEWS6
1 files changed, 3 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index cfdb772e33..5c26678b0e 100644
--- a/NEWS
+++ b/NEWS
@@ -74,7 +74,7 @@ with all sufficient information, see the ChangeLog file or Redmine
digits, as well as Float#round. [Feature #12245]
* Float#round now takes an optional keyword argument, half option, and
- the default behavior is round-to-nearest-even now. [Bug #12548]
+ the default behavior is round-up. [Bug #12548] [Bug #12958]
half option can be one of :even, :up, and :down. [Feature #12953]
* Hash
@@ -92,7 +92,7 @@ with all sufficient information, see the ChangeLog file or Redmine
* Integer#digits for extracting columns of place-value notation [Feature #12447]
* Integer#round now takes an optional keyword argument, half option, and the
- default behavior is round-to-nearest-even now. [Bug #12548]
+ default behavior is round-up now. [Bug #12548] [Bug #12958]
half option can be one of :even, :up, and :down. [Feature #12953]
* IO
@@ -127,7 +127,7 @@ with all sufficient information, see the ChangeLog file or Redmine
* Rational
* Rational#round now takes an optional keyword argument, half option, and
- the default behavior is round-to-nearest-even now. [Bug #12548]
+ the default behavior is round-up now. [Bug #12548] [Bug #12958]
half option can be one of :even, :up, and :down. [Feature #12953]
* Regexp