Update active_record_basics.md

This commit is contained in:
James Johnson 2022-11-12 09:37:07 -06:00 committed by GitHub
parent aab04ec39c
commit 64ea36c29a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -299,7 +299,7 @@ User.update_all max_login_attempts: 3, must_change_password: true
### Delete
Likewise, once retrieved an Active Record object can be destroyed which removes
Likewise, once retrieved, an Active Record object can be destroyed, which removes
it from the database.
```ruby