1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

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
This commit is contained in:
kazu 2018-01-12 00:16:56 +00:00
parent 99886a9121
commit f4937c6231

View file

@ -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]