Update active_record_querying.md

Fixed a typo in enums comment
This commit is contained in:
Sajjad Umar 2020-10-15 18:55:03 +05:00 committed by GitHub
parent b5b078cd99
commit fc0280669c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1652,7 +1652,7 @@ order = Order.first
order.shipped?
# Returns true if status == :shipped
order.complete?
# Returns true if status == :shipped
# Returns true if status == :complete
...
```