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

remove empty? from CHANGELOG [ci skip]

Follow up to 98264a1343
This commit is contained in:
yuuji.yaginuma 2016-05-03 20:47:14 +09:00
parent 06dc3fba46
commit e86a1bd1d7

View file

@ -119,12 +119,11 @@
*Jeremy Daer*
* Delegate `empty?`, `none?` and `one?`. Now they can be invoked as model class methods.
* Delegate `none?` and `one?`. Now they can be invoked as model class methods.
Example:
# When no record is found on the table
Topic.empty? # => true
Topic.none? # => true
# When only one record is found on the table