aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/nested_attributes.rb
diff options
context:
space:
mode:
authorAdam Meehan <adam.meehan@gmail.com>2010-06-29 13:32:53 +1000
committerAdam Meehan <adam.meehan@gmail.com>2010-06-29 13:32:53 +1000
commit8fbb5177a7a3618d7b40bccbb3b36876a10a8918 (patch)
treef281f262637b5713d41d0e502a79f3b18cd35148 /activerecord/lib/active_record/nested_attributes.rb
parent0175c470c01c22db2f54c3912958bdb6c573d6cb (diff)
downloadrails-8fbb5177a7a3618d7b40bccbb3b36876a10a8918.tar.gz
rails-8fbb5177a7a3618d7b40bccbb3b36876a10a8918.tar.bz2
rails-8fbb5177a7a3618d7b40bccbb3b36876a10a8918.zip
accepts_nested_attributes_for typo
Diffstat (limited to 'activerecord/lib/active_record/nested_attributes.rb')
-rw-r--r--activerecord/lib/active_record/nested_attributes.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/nested_attributes.rb b/activerecord/lib/active_record/nested_attributes.rb
index c0302136ea..cf8c5aaf84 100644
--- a/activerecord/lib/active_record/nested_attributes.rb
+++ b/activerecord/lib/active_record/nested_attributes.rb
@@ -213,7 +213,7 @@ module ActiveRecord
# that will reject a record where all the attributes are blank.
# [:limit]
# Allows you to specify the maximum number of the associated records that
- # can be processes with the nested attributes. If the size of the
+ # can be processed with the nested attributes. If the size of the
# nested attributes array exceeds the specified limit, NestedAttributes::TooManyRecords
# exception is raised. If omitted, any number associations can be processed.
# Note that the :limit option is only applicable to one-to-many associations.