aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorAkshay Vishnoi <akshay.vishnoi@vinsol.com>2015-03-19 10:50:50 +0530
committerAkshay Vishnoi <akshay.vishnoi@vinsol.com>2015-03-19 10:50:50 +0530
commite3c70df197e44c65267c4e84870f24b3f479cc54 (patch)
tree998116faa5f4f216f66f575f636a0434fb632468 /guides/source
parent64e27f9230c2b443cb1a8f5b0bba38b85bdc3a83 (diff)
downloadrails-e3c70df197e44c65267c4e84870f24b3f479cc54.tar.gz
rails-e3c70df197e44c65267c4e84870f24b3f479cc54.tar.bz2
rails-e3c70df197e44c65267c4e84870f24b3f479cc54.zip
[ci skip] use true as value rather than symbol
Diffstat (limited to 'guides/source')
-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