diff options
author | Hrvoje Šimić <shime.ferovac@gmail.com> | 2012-05-11 16:27:21 +0200 |
---|---|---|
committer | Hrvoje Šimić <shime.ferovac@gmail.com> | 2012-05-11 16:27:21 +0200 |
commit | 1b956700ee61e8cc5fab140b38d702767e3d03f1 (patch) | |
tree | 814102df62854fc68de16aa762872984dc31e4c9 /activerecord | |
parent | bd2b1c126bae98d93426915e036513dc0137ce25 (diff) | |
download | rails-1b956700ee61e8cc5fab140b38d702767e3d03f1.tar.gz rails-1b956700ee61e8cc5fab140b38d702767e3d03f1.tar.bz2 rails-1b956700ee61e8cc5fab140b38d702767e3d03f1.zip |
better wording
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/lib/active_record/nested_attributes.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/activerecord/lib/active_record/nested_attributes.rb b/activerecord/lib/active_record/nested_attributes.rb index 32a1dae6bc..95a2ddcc11 100644 --- a/activerecord/lib/active_record/nested_attributes.rb +++ b/activerecord/lib/active_record/nested_attributes.rb @@ -19,10 +19,10 @@ module ActiveRecord # = Active Record Nested Attributes # # Nested attributes allow you to save attributes on associated records - # through the parent. By default nested attribute updating is turned off, - # you can enable it using the accepts_nested_attributes_for class method. - # When you enable nested attributes an attribute writer is defined on - # the model. + # through the parent. By default nested attribute updating is turned off + # and you can enable it using the accepts_nested_attributes_for class + # method. When you enable nested attributes an attribute writer is + # defined on the model. # # The attribute writer is named after the association, which means that # in the following example, two new methods are added to your model: |