aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/nested_attributes.rb
diff options
context:
space:
mode:
authorHrvoje Šimić <shime.ferovac@gmail.com>2012-05-11 16:27:21 +0200
committerHrvoje Šimić <shime.ferovac@gmail.com>2012-05-11 16:27:21 +0200
commit1b956700ee61e8cc5fab140b38d702767e3d03f1 (patch)
tree814102df62854fc68de16aa762872984dc31e4c9 /activerecord/lib/active_record/nested_attributes.rb
parentbd2b1c126bae98d93426915e036513dc0137ce25 (diff)
downloadrails-1b956700ee61e8cc5fab140b38d702767e3d03f1.tar.gz
rails-1b956700ee61e8cc5fab140b38d702767e3d03f1.tar.bz2
rails-1b956700ee61e8cc5fab140b38d702767e3d03f1.zip
better wording
Diffstat (limited to 'activerecord/lib/active_record/nested_attributes.rb')
-rw-r--r--activerecord/lib/active_record/nested_attributes.rb8
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: