aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEileen M. Uchitelle <eileencodes@gmail.com>2016-05-03 07:54:38 -0400
committerEileen M. Uchitelle <eileencodes@gmail.com>2016-05-03 07:54:38 -0400
commit0627b8b923ab56fcf4a1f51aa4720969b8a2abb1 (patch)
tree434c50e502cf9c3d4346f41e6b7a67339cbc40ab
parent06dc3fba4623a77e3cc7fa04f97723462d47bf1e (diff)
parente86a1bd1d7b9ca3840d76b48cba7a1e23702cab6 (diff)
downloadrails-0627b8b923ab56fcf4a1f51aa4720969b8a2abb1.tar.gz
rails-0627b8b923ab56fcf4a1f51aa4720969b8a2abb1.tar.bz2
rails-0627b8b923ab56fcf4a1f51aa4720969b8a2abb1.zip
Merge pull request #24831 from y-yagi/remove_empty_from_changelog
remove `empty?` from CHANGELOG [ci skip]
-rw-r--r--activerecord/CHANGELOG.md3
1 files changed, 1 insertions, 2 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index e40106b1b7..fdf310f15f 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -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