aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/callbacks.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/lib/active_record/callbacks.rb')
-rwxr-xr-xactiverecord/lib/active_record/callbacks.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/callbacks.rb b/activerecord/lib/active_record/callbacks.rb
index b70d27f413..1346000d00 100755
--- a/activerecord/lib/active_record/callbacks.rb
+++ b/activerecord/lib/active_record/callbacks.rb
@@ -22,7 +22,7 @@ module ActiveRecord
# * (9) after_save
#
# That's a total of nine callbacks, which gives you immense power to react and prepare for each state in the
- # Active Record lifecyle.
+ # Active Record lifecycle.
#
# Examples:
# class CreditCard < ActiveRecord::Base
@@ -125,7 +125,7 @@ module ActiveRecord
# end
#
# def decrypt(value)
- # # Secrecy is unvieled
+ # # Secrecy is unveiled
# end
# end
#