diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2008-02-24 00:37:12 +0000 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2008-02-24 00:37:12 +0000 |
commit | c6a3a39feade3ad5340cd3edfecbd024eecf653a (patch) | |
tree | 625a5c23b9e7aad3f2219a8023c0a06b038ae256 /activerecord/lib | |
parent | 9a947af0e79cfb8692eb7e5ae94c1b8c40756f49 (diff) | |
download | rails-c6a3a39feade3ad5340cd3edfecbd024eecf653a.tar.gz rails-c6a3a39feade3ad5340cd3edfecbd024eecf653a.tar.bz2 rails-c6a3a39feade3ad5340cd3edfecbd024eecf653a.zip |
Fix rdoc typo. Closes #11205 [wangchun]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8927 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/lib')
-rwxr-xr-x | activerecord/lib/active_record/validations.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/validations.rb b/activerecord/lib/active_record/validations.rb index 1afdb76940..f9888c7111 100755 --- a/activerecord/lib/active_record/validations.rb +++ b/activerecord/lib/active_record/validations.rb @@ -389,7 +389,7 @@ module ActiveRecord # <%= password_field "person", "password_confirmation" %> # # The added +password_confirmation+ attribute is virtual; it exists only as an in-memory attribute for validating the password. - # To achieve this, the validation adds acccessors to the model for the confirmation attribute. NOTE: This check is performed + # To achieve this, the validation adds accessors to the model for the confirmation attribute. NOTE: This check is performed # only if +password_confirmation+ is not nil, and by default only on save. To require confirmation, make sure to add a presence # check for the confirmation attribute: # |