aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/base.rb
diff options
context:
space:
mode:
authoryuuji.yaginuma <yuuji.yaginuma@gmail.com>2015-12-17 13:44:21 +0900
committeryuuji.yaginuma <yuuji.yaginuma@gmail.com>2015-12-17 13:49:01 +0900
commitdfa51d4ff48af532ecb35de454390384a6511921 (patch)
treec90e7dca0000fb4eecce4ee6e8fcb623c7959e26 /activerecord/lib/active_record/base.rb
parent5082cce6e3de01f54af620c590055ebb1effa299 (diff)
downloadrails-dfa51d4ff48af532ecb35de454390384a6511921.tar.gz
rails-dfa51d4ff48af532ecb35de454390384a6511921.tar.bz2
rails-dfa51d4ff48af532ecb35de454390384a6511921.zip
fix typo in method name [ci skip]
It was changed by mistake at 428d47adfed8d6aa7b21aec2bf5ad890961c9de3
Diffstat (limited to 'activerecord/lib/active_record/base.rb')
-rw-r--r--activerecord/lib/active_record/base.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/base.rb b/activerecord/lib/active_record/base.rb
index 9782e58299..4a31a1aa84 100644
--- a/activerecord/lib/active_record/base.rb
+++ b/activerecord/lib/active_record/base.rb
@@ -261,7 +261,7 @@ module ActiveRecord #:nodoc:
# The +errors+ property of this exception contains an array of
# AttributeAssignmentError
# objects that should be inspected to determine which attributes triggered the errors.
- # * RecordInvalid - raised by {ActiveRecord::Base#save}[rdoc-ref:Persistence#save] and
+ # * RecordInvalid - raised by {ActiveRecord::Base#save!}[rdoc-ref:Persistence#save!] and
# {ActiveRecord::Base.create!}[rdoc-ref:Persistence::ClassMethods#create!]
# when the record is invalid.
# * RecordNotFound - No record responded to the {ActiveRecord::Base.find}[rdoc-ref:FinderMethods#find] method.