diff options
author | Alexey Muranov <alexey.muranov@gmail.com> | 2013-03-12 18:02:00 +0100 |
---|---|---|
committer | Alexey Muranov <alexey.muranov@gmail.com> | 2013-03-12 18:02:00 +0100 |
commit | 694c9ed6c383f9b0d7e510f9e9b0a5491636e032 (patch) | |
tree | 3e96fda4279000c9147997e4ba323c798d66e069 | |
parent | b6cf11138c99093cb4c2c8e997355ca4a8f80b6a (diff) | |
download | rails-694c9ed6c383f9b0d7e510f9e9b0a5491636e032.tar.gz rails-694c9ed6c383f9b0d7e510f9e9b0a5491636e032.tar.bz2 rails-694c9ed6c383f9b0d7e510f9e9b0a5491636e032.zip |
Fix my typo
-rw-r--r-- | activerecord/lib/active_record/nested_attributes.rb | 2 |
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 abf8272775..f0c29bbf73 100644 --- a/activerecord/lib/active_record/nested_attributes.rb +++ b/activerecord/lib/active_record/nested_attributes.rb @@ -198,7 +198,7 @@ module ActiveRecord # { title: 'Bar' } ]) # # The keys of the hash which is the value for +:posts_attributes+ are - # ignores in this case. + # ignored in this case. # However, it is not allowed to use +'id'+ or +:id+ for one of # such keys, otherwise the hash will be wrapped in an array and # interpreted as an attribute hash for a single post. |