aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG
diff options
context:
space:
mode:
authorJaime Iniesta <jaimeiniesta@gmail.com>2010-08-26 09:55:26 +0200
committerJaime Iniesta <jaimeiniesta@gmail.com>2010-08-26 09:55:26 +0200
commitfa1ba5bd5bbcdfc82104a2b88fb25d2f3695a525 (patch)
tree91bb8e0324fb6485b8a93bd256eca00aec1eb522 /activerecord/CHANGELOG
parent5e73ab0936b492aec24f41be269e0ae481287df0 (diff)
downloadrails-fa1ba5bd5bbcdfc82104a2b88fb25d2f3695a525.tar.gz
rails-fa1ba5bd5bbcdfc82104a2b88fb25d2f3695a525.tar.bz2
rails-fa1ba5bd5bbcdfc82104a2b88fb25d2f3695a525.zip
lifecycle should be two words, life cycle
Diffstat (limited to 'activerecord/CHANGELOG')
-rw-r--r--activerecord/CHANGELOG2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG
index 972c907c46..906a17dd67 100644
--- a/activerecord/CHANGELOG
+++ b/activerecord/CHANGELOG
@@ -5218,7 +5218,7 @@ in effect. Added :readonly finder constraint. Calling an association collectio
NOTE: The agreement is considered valid if it's set to the string "1". This makes it easy to relate it to an HTML checkbox.
-* Added validation macros to make the stackable just like the lifecycle callbacks. Examples:
+* Added validation macros to make the stackable just like the life cycle callbacks. Examples:
class Person < ActiveRecord::Base
validate { |record| record.errors.add("name", "too short") unless name.size > 10 }