diff options
author | Waitaya Krongapiradee <wyte.sk133@gmail.com> | 2016-09-02 12:00:16 +0700 |
---|---|---|
committer | Waitaya Krongapiradee <wyte.sk133@gmail.com> | 2016-09-02 12:00:16 +0700 |
commit | e88a745ca32f2551d0ab127b60b7c167f91217af (patch) | |
tree | d1791cb764bf353735cae7a78bdd892e43a60c2e /guides | |
parent | db63406cb007ab3756d2a96d2e0b5d4e777f8231 (diff) | |
download | rails-e88a745ca32f2551d0ab127b60b7c167f91217af.tar.gz rails-e88a745ca32f2551d0ab127b60b7c167f91217af.tar.bz2 rails-e88a745ca32f2551d0ab127b60b7c167f91217af.zip |
Grammar fix [ci skip]
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/association_basics.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/association_basics.md b/guides/source/association_basics.md index 3993fdb1dd..2e682b6951 100644 --- a/guides/source/association_basics.md +++ b/guides/source/association_basics.md @@ -1007,7 +1007,7 @@ class Author < ApplicationRecord end ``` -In this case, saving or destroying an book will update the timestamp on the associated author. You can also specify a particular timestamp attribute to update: +In this case, saving or destroying a book will update the timestamp on the associated author. You can also specify a particular timestamp attribute to update: ```ruby class Book < ApplicationRecord |