aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2015-04-28 09:10:39 -0300
committerCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2015-04-28 09:10:39 -0300
commit4a95688ee1cbbcbc1f07e5a5d5adfef604a8e9dc (patch)
tree6598f82a8d652165b936492a305d30b9d50d0209
parentf58c1e17faeb8251a2ac945c7f6a13d37bc2da17 (diff)
parent6f3e635e413152220ad517a7299c244a58b0d4a9 (diff)
downloadrails-4a95688ee1cbbcbc1f07e5a5d5adfef604a8e9dc.tar.gz
rails-4a95688ee1cbbcbc1f07e5a5d5adfef604a8e9dc.tar.bz2
rails-4a95688ee1cbbcbc1f07e5a5d5adfef604a8e9dc.zip
Merge pull request #19937 from tak1n/master
Fixed typo in documentation
-rw-r--r--activerecord/lib/active_record/nested_attributes.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/nested_attributes.rb b/activerecord/lib/active_record/nested_attributes.rb
index 084ef397a8..90e37e80d2 100644
--- a/activerecord/lib/active_record/nested_attributes.rb
+++ b/activerecord/lib/active_record/nested_attributes.rb
@@ -147,8 +147,8 @@ module ActiveRecord
# has_many :posts
# accepts_nested_attributes_for :posts, reject_if: :reject_posts
#
- # def reject_posts(attributed)
- # attributed['title'].blank?
+ # def reject_posts(attributes)
+ # attributes['title'].blank?
# end
# end
#