aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/association_basics.md
diff options
context:
space:
mode:
authorAbdelkader Boudih <terminale@gmail.com>2015-03-19 06:25:38 +0000
committerAbdelkader Boudih <terminale@gmail.com>2015-03-19 06:25:38 +0000
commit7f338b9082fe3488f681c171b93c371cfc951f22 (patch)
tree5a427add6abbecc0ff3c48217d830129c8b9179a /guides/source/association_basics.md
parent26122797e2f1ae5dfb7f5e116fd307d25d98cc71 (diff)
parente3c70df197e44c65267c4e84870f24b3f479cc54 (diff)
downloadrails-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
Diffstat (limited to 'guides/source/association_basics.md')
-rw-r--r--guides/source/association_basics.md2
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