aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md6
1 files changed, 2 insertions, 4 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index a888b79391..60ebe2ff7c 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -6,13 +6,11 @@
*Yves Senn*
* ActiveRecord now raises an error when blank arguments are passed to query
- methods for which blank arguments do not make sense. This also occurs for
- nil-like objects in arguments.
+ methods for which blank arguments do not make sense.
Example:
- Post.limit() # => raises error
- Post.include([]) # => raises error
+ Post.includes() # => raises error
*John Wang*