summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-01-12 00:16:56 +0000
committerkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-01-12 00:16:56 +0000
commitf4937c623199be4e8f59ff033acc03217ad75346 (patch)
treefdf39219eb194175062ae6316390bf6e8f37530c /doc
parent99886a9121738bdb5ddf321f3e98093b1a48054d (diff)
doc/NEWS-2.5.0: `step` is not `Integer#step` but `Numeric#step` [ci skip]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61780 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'doc')
-rw-r--r--doc/NEWS-2.5.06
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/NEWS-2.5.0 b/doc/NEWS-2.5.0
index 9634bf1410..77e1803362 100644
--- a/doc/NEWS-2.5.0
+++ b/doc/NEWS-2.5.0
@@ -106,9 +106,6 @@ with all sufficient information, see the ChangeLog file or Redmine
* Integer
- * Integer#step no longer hides errors from coerce method when
- given a step value which cannot be compared with #> to 0.
- [Feature #7688]
* Integer#{round,floor,ceil,truncate} always return an Integer.
[Bug #13420]
* Integer#pow accepts modulo argument for calculating modular
@@ -138,6 +135,9 @@ with all sufficient information, see the ChangeLog file or Redmine
* Numeric
+ * Numeric#step no longer hides errors from coerce method when
+ given a step value which cannot be compared with #> to 0.
+ [Feature #7688]
* Numerical comparison operators (<,<=,>=,>) no longer hide exceptions
from #coerce method internally. Return nil in #coerce if the coercion is
impossible. [Feature #7688]