diff options
author | Xavier Noria <fxn@hashref.com> | 2010-08-10 15:34:54 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2010-08-10 15:34:54 +0200 |
commit | fff917e37d979fcbb4844671acbba7977c26d22a (patch) | |
tree | 19e3172b849b075d0ae24b1adb2145035c5201dd /activemodel/lib | |
parent | 2a984806ca89ac5fb64256d82fdfe318dd8c543d (diff) | |
download | rails-fff917e37d979fcbb4844671acbba7977c26d22a.tar.gz rails-fff917e37d979fcbb4844671acbba7977c26d22a.tar.bz2 rails-fff917e37d979fcbb4844671acbba7977c26d22a.zip |
fixes a typo reported by rymai
Diffstat (limited to 'activemodel/lib')
-rw-r--r-- | activemodel/lib/active_model/validations/validates.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activemodel/lib/active_model/validations/validates.rb b/activemodel/lib/active_model/validations/validates.rb index 0674640925..3260e6bc5a 100644 --- a/activemodel/lib/active_model/validations/validates.rb +++ b/activemodel/lib/active_model/validations/validates.rb @@ -40,7 +40,7 @@ module ActiveModel # validates :email, :presence => true, :email => true # end # - # Validator classes my also exist within the class being validated + # Validator classes may also exist within the class being validated # allowing custom modules of validators to be included as needed e.g. # # class Film |