aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source/active_record_validations_callbacks.textile
diff options
context:
space:
mode:
authorDavid N. Welton <davidw@dedasys.com>2010-11-22 16:06:28 +0100
committerDavid N. Welton <davidw@dedasys.com>2010-11-22 16:06:28 +0100
commit818b366c3e3645b3375ee0b1d1023621dbeaede2 (patch)
tree6e5f450c52666c15cd61fcac43bd7bfe6115d681 /railties/guides/source/active_record_validations_callbacks.textile
parent0598bd4d2db332e05fb4189169441fb1ad12e9b1 (diff)
parent2515ad8a3e03402c1d5a5f9b46c48a3a9bf75081 (diff)
downloadrails-818b366c3e3645b3375ee0b1d1023621dbeaede2.tar.gz
rails-818b366c3e3645b3375ee0b1d1023621dbeaede2.tar.bz2
rails-818b366c3e3645b3375ee0b1d1023621dbeaede2.zip
Merge branch 'master' of github.com:lifo/docrails
Diffstat (limited to 'railties/guides/source/active_record_validations_callbacks.textile')
-rw-r--r--railties/guides/source/active_record_validations_callbacks.textile2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/active_record_validations_callbacks.textile b/railties/guides/source/active_record_validations_callbacks.textile
index 9ce0423244..0824ba450c 100644
--- a/railties/guides/source/active_record_validations_callbacks.textile
+++ b/railties/guides/source/active_record_validations_callbacks.textile
@@ -355,7 +355,7 @@ This helper validates that the specified attributes are not empty. It uses the +
<ruby>
class Person < ActiveRecord::Base
- validates :name, :presence => true, :login, :email
+ validates :name, :login, :email, :presence => true
end
</ruby>