diff options
author | Leo Gallucci <elgalu3@gmail.com> | 2013-05-19 20:46:12 -0300 |
---|---|---|
committer | Leo Gallucci <elgalu3@gmail.com> | 2013-05-19 20:46:12 -0300 |
commit | 632de544405453912637ce332263b91d3c519239 (patch) | |
tree | a2deba2067db12940a3506c15c553d648f0c71e8 | |
parent | 534ef888992480b79e28bcaf6f2ae7e4b6129fa8 (diff) | |
download | rails-632de544405453912637ce332263b91d3c519239.tar.gz rails-632de544405453912637ce332263b91d3c519239.tar.bz2 rails-632de544405453912637ce332263b91d3c519239.zip |
Missing ending ``` at 14.2 Merging of scopes
http://edgeguides.rubyonrails.org/active_record_querying.html#merging-of-scopes
-rw-r--r-- | guides/source/active_record_querying.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/guides/source/active_record_querying.md b/guides/source/active_record_querying.md index 19b214f114..c4d69908ed 100644 --- a/guides/source/active_record_querying.md +++ b/guides/source/active_record_querying.md @@ -1202,6 +1202,7 @@ class User < ActiveRecord::Base scope :active, -> { where state: 'active' } scope :inactive, -> { where state: 'inactive' } end +``` ```ruby User.active.inactive |