aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/nested_attributes.rb
diff options
context:
space:
mode:
authorRizwan Reza <rizwanreza@gmail.com>2010-06-16 22:08:14 +0430
committerRizwan Reza <rizwanreza@gmail.com>2010-06-16 22:08:14 +0430
commitd8277804b2ad95275d21492f4d925d1148425253 (patch)
treec2978824a9949e37a6f47597c3315df14022df35 /activerecord/lib/active_record/nested_attributes.rb
parent317a75bf5860a9ab5d5535ccb4aedfabc83644d6 (diff)
downloadrails-d8277804b2ad95275d21492f4d925d1148425253.tar.gz
rails-d8277804b2ad95275d21492f4d925d1148425253.tar.bz2
rails-d8277804b2ad95275d21492f4d925d1148425253.zip
Adds title and minor changes.
Diffstat (limited to 'activerecord/lib/active_record/nested_attributes.rb')
-rw-r--r--activerecord/lib/active_record/nested_attributes.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/nested_attributes.rb b/activerecord/lib/active_record/nested_attributes.rb
index 767ec85432..99f8b431c8 100644
--- a/activerecord/lib/active_record/nested_attributes.rb
+++ b/activerecord/lib/active_record/nested_attributes.rb
@@ -15,7 +15,7 @@ module ActiveRecord
self.nested_attributes_options = {}
end
- # == Nested Attributes
+ # = 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,
@@ -25,6 +25,7 @@ module ActiveRecord
#
# The attribute writer is named after the association, which means that
# in the following example, two new methods are added to your model:
+ #
# <tt>author_attributes=(attributes)</tt> and
# <tt>pages_attributes=(attributes)</tt>.
#