aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKuldeep Aggarwal <kd.engineer@yahoo.co.in>2013-11-27 13:53:19 +0530
committerKuldeep Aggarwal <kd.engineer@yahoo.co.in>2013-11-27 13:53:19 +0530
commite1042ee39994b812bdc0ff3a4bfb43e79e6cf164 (patch)
tree97c964c82bf8f07770650d3379320d7de7b0ea4e
parentc65f8d224360721111a40d057b843ea068bffedc (diff)
downloadrails-e1042ee39994b812bdc0ff3a4bfb43e79e6cf164.tar.gz
rails-e1042ee39994b812bdc0ff3a4bfb43e79e6cf164.tar.bz2
rails-e1042ee39994b812bdc0ff3a4bfb43e79e6cf164.zip
[ci skip]removed obsolete information about `options` parameter in create method
-rw-r--r--activerecord/lib/active_record/persistence.rb3
1 files changed, 0 insertions, 3 deletions
diff --git a/activerecord/lib/active_record/persistence.rb b/activerecord/lib/active_record/persistence.rb
index a73a140ef1..35fbad466e 100644
--- a/activerecord/lib/active_record/persistence.rb
+++ b/activerecord/lib/active_record/persistence.rb
@@ -10,9 +10,6 @@ module ActiveRecord
# The +attributes+ parameter can be either a Hash or an Array of Hashes. These Hashes describe the
# attributes on the objects that are to be created.
#
- # +create+ respects mass-assignment security and accepts either +:as+ or +:without_protection+ options
- # in the +options+ parameter.
- #
# ==== Examples
# # Create a single new object
# User.create(first_name: 'Jamie')