1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

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

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
...
```