aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorAmit Thawait <amit17thawait@gmail.com>2014-02-18 11:26:54 -0800
committerAmit Thawait <amit17thawait@gmail.com>2014-02-18 11:26:54 -0800
commitb74490e4f25ef26de3906cd5cd9ca0193e873372 (patch)
treee020675579f6052cb35eb819fb8d325380b2da1b /activerecord
parent33cb47ee488b2381d87f5bb36818cae5fa76c22e (diff)
downloadrails-b74490e4f25ef26de3906cd5cd9ca0193e873372.tar.gz
rails-b74490e4f25ef26de3906cd5cd9ca0193e873372.tar.bz2
rails-b74490e4f25ef26de3906cd5cd9ca0193e873372.zip
Typo fix for unscope
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/CHANGELOG.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 38206d727f..7efd75a239 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -46,7 +46,7 @@
class User < ActiveRecord::Base
default_scope { where state: 'pending' }
- scope :active, -> { unescope(where: :state).where(state: 'active') }
+ scope :active, -> { unscope(where: :state).where(state: 'active') }
scope :inactive, -> { rewhere state: 'inactive' }
end