aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/callbacks.rb
diff options
context:
space:
mode:
authorkaranarora <mail@arorakaran.com>2015-05-20 15:21:00 +0530
committerkaranarora <mail@arorakaran.com>2015-05-20 15:21:00 +0530
commitec8b7a543e2899f7b3d6d8f9915f3ba1c2ef913f (patch)
tree74eb8b7d1cf1b98df50e7af8177e924b2760bef7 /activerecord/lib/active_record/callbacks.rb
parent2c2047d439dc3f251827076034ab91b7a2beba17 (diff)
downloadrails-ec8b7a543e2899f7b3d6d8f9915f3ba1c2ef913f.tar.gz
rails-ec8b7a543e2899f7b3d6d8f9915f3ba1c2ef913f.tar.bz2
rails-ec8b7a543e2899f7b3d6d8f9915f3ba1c2ef913f.zip
typo fix [ci skip]
Diffstat (limited to 'activerecord/lib/active_record/callbacks.rb')
-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
#