Skip to content

Commit

Permalink
Merge pull request #11309 from crakalakin/AR-querying-guide
Browse files Browse the repository at this point in the history
removes markdown code markers from displaying in the active record querying guide [ci skip]
  • Loading branch information
carlosantoniodasilva committed Jul 5, 2013
1 parent 5d20538 commit ac75cf0
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion guides/source/active_record_querying.md
Expand Up @@ -1203,7 +1203,6 @@ class User < ActiveRecord::Base
scope :inactive, -> { where state: 'inactive' }
end

```ruby
User.active.inactive
# => SELECT "users".* FROM "users" WHERE "users"."state" = 'active' AND "users"."state" = 'inactive'
```
Expand Down

0 comments on commit ac75cf0

Please sign in to comment.