diff options
author | Abdelkader Boudih <terminale@gmail.com> | 2015-03-19 06:25:38 +0000 |
---|---|---|
committer | Abdelkader Boudih <terminale@gmail.com> | 2015-03-19 06:25:38 +0000 |
commit | 7f338b9082fe3488f681c171b93c371cfc951f22 (patch) | |
tree | 5a427add6abbecc0ff3c48217d830129c8b9179a | |
parent | 26122797e2f1ae5dfb7f5e116fd307d25d98cc71 (diff) | |
parent | e3c70df197e44c65267c4e84870f24b3f479cc54 (diff) | |
download | rails-7f338b9082fe3488f681c171b93c371cfc951f22.tar.gz rails-7f338b9082fe3488f681c171b93c371cfc951f22.tar.bz2 rails-7f338b9082fe3488f681c171b93c371cfc951f22.zip |
Merge pull request #19403 from akshay-vishnoi/docs
[ci skip] use true as value rather than symbol
-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 d7843c5caf..ec6017ff73 100644 --- a/guides/source/association_basics.md +++ b/guides/source/association_basics.md @@ -933,7 +933,7 @@ Passing `true` to the `:polymorphic` option indicates that this is a polymorphic ##### `:touch` -If you set the `:touch` option to `:true`, then the `updated_at` or `updated_on` timestamp on the associated object will be set to the current time whenever this object is saved or destroyed: +If you set the `:touch` option to `true`, then the `updated_at` or `updated_on` timestamp on the associated object will be set to the current time whenever this object is saved or destroyed: ```ruby class Order < ActiveRecord::Base |