aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2015-05-20 07:48:26 -0300
committerSantiago Pastorino <santiago@wyeworks.com>2015-05-20 07:48:26 -0300
commit0f9ab4f34804d54e7aca0552324a92e8999f6ab4 (patch)
tree68c7cbb610a5c2c6d4a397395cea1cda0f621191 /activerecord
parent1ceeadad3b3431e97ab333545bd9bbf263c0ecc7 (diff)
parentec8b7a543e2899f7b3d6d8f9915f3ba1c2ef913f (diff)
downloadrails-0f9ab4f34804d54e7aca0552324a92e8999f6ab4.tar.gz
rails-0f9ab4f34804d54e7aca0552324a92e8999f6ab4.tar.bz2
rails-0f9ab4f34804d54e7aca0552324a92e8999f6ab4.zip
Merge pull request #20219 from karanarora/Typo-fix
typo fix [ci skip]
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/lib/active_record/callbacks.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/callbacks.rb b/activerecord/lib/active_record/callbacks.rb
index 2fcba8e309..3027ce928e 100644
--- a/activerecord/lib/active_record/callbacks.rb
+++ b/activerecord/lib/active_record/callbacks.rb
@@ -194,7 +194,7 @@ module ActiveRecord
#
# If the +before_validation+ callback throws +:abort+, the process will be
# aborted and <tt>Base#save</tt> will return +false+. If Base#save! is called it will raise a
- # ActiveRecord::RecordInvalid exception. Nothing will be appended to the errors object.
+ # <tt>ActiveRecord::RecordInvalid</tt> exception. Nothing will be appended to the errors object.
#
# == Canceling callbacks
#