aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/lib
diff options
context:
space:
mode:
authorMikel Lindsaar <raasdnil@gmail.com>2010-01-19 11:29:01 +1100
committerMikel Lindsaar <raasdnil@gmail.com>2010-01-19 11:29:01 +1100
commit3cb0283fb6547982b35fda1e0d4af00071c026ae (patch)
treedd7413bfa82a9f2154706b4b94f970a5acfd8774 /activemodel/lib
parent907754d7ee74c4f6f94c2457bd46e116bc82acbd (diff)
downloadrails-3cb0283fb6547982b35fda1e0d4af00071c026ae.tar.gz
rails-3cb0283fb6547982b35fda1e0d4af00071c026ae.tar.bz2
rails-3cb0283fb6547982b35fda1e0d4af00071c026ae.zip
Documentation cleanup and linkage for validator
Diffstat (limited to 'activemodel/lib')
-rw-r--r--activemodel/lib/active_model/validator.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/activemodel/lib/active_model/validator.rb b/activemodel/lib/active_model/validator.rb
index 382a4cc98d..ad9729de00 100644
--- a/activemodel/lib/active_model/validator.rb
+++ b/activemodel/lib/active_model/validator.rb
@@ -1,5 +1,6 @@
module ActiveModel #:nodoc:
- # A simple base class that can be used along with ActiveModel::Validations::ClassMethods.validates_with
+ # A simple base class that can be used along with
+ # +ActiveModel::Validations::ClassMethods.validates_with+
#
# class Person
# include ActiveModel::Validations
@@ -28,7 +29,7 @@ module ActiveModel #:nodoc:
# end
#
# class MyValidator < ActiveModel::Validator
- # def validate
+ # def validate(record)
# record # => The person instance being validated
# options # => Any non-standard options passed to validates_with
# end