aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authoryuuji.yaginuma <yuuji.yaginuma@gmail.com>2016-05-03 20:47:14 +0900
committeryuuji.yaginuma <yuuji.yaginuma@gmail.com>2016-05-03 20:49:07 +0900
commite86a1bd1d7b9ca3840d76b48cba7a1e23702cab6 (patch)
tree434c50e502cf9c3d4346f41e6b7a67339cbc40ab /activerecord
parent06dc3fba4623a77e3cc7fa04f97723462d47bf1e (diff)
downloadrails-e86a1bd1d7b9ca3840d76b48cba7a1e23702cab6.tar.gz
rails-e86a1bd1d7b9ca3840d76b48cba7a1e23702cab6.tar.bz2
rails-e86a1bd1d7b9ca3840d76b48cba7a1e23702cab6.zip
remove `empty?` from CHANGELOG [ci skip]
Follow up to 98264a1343fad6bb6637893a37fd571916b4158c
Diffstat (limited to 'activerecord')
-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