aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/lib/active_model/validations/validates.rb
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2010-01-11 23:37:48 +0100
committerJosé Valim <jose.valim@gmail.com>2010-01-11 23:38:35 +0100
commitb078f7fd3910b0b174bc951cc8c0d27536b09c16 (patch)
treec12d709d1427e7acd0551b8d58fd1d1b88899a24 /activemodel/lib/active_model/validations/validates.rb
parentcccb9988002f7b44133c089654b417ae9808b65f (diff)
downloadrails-b078f7fd3910b0b174bc951cc8c0d27536b09c16.tar.gz
rails-b078f7fd3910b0b174bc951cc8c0d27536b09c16.tar.bz2
rails-b078f7fd3910b0b174bc951cc8c0d27536b09c16.zip
Fix typos and add tests to ensure they will be caught the next time.
Diffstat (limited to 'activemodel/lib/active_model/validations/validates.rb')
-rw-r--r--activemodel/lib/active_model/validations/validates.rb2
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 80924f50d6..4c82a993ae 100644
--- a/activemodel/lib/active_model/validations/validates.rb
+++ b/activemodel/lib/active_model/validations/validates.rb
@@ -54,7 +54,7 @@ module ActiveModel
# The validators hash can also handle regular expressions, ranges and arrays:
#
# validates :email, :format => /@/
- # validates :gender, :inclusion => %w(mail female)
+ # validates :gender, :inclusion => %w(male female)
# validates :password, :length => 6..20
#
# Finally, the options :if, :unless, :on, :allow_blank and :allow_nil can be given