diff options
author | Pavel Gorbokon <pahanix@gmail.com> | 2010-11-22 16:37:33 +0200 |
---|---|---|
committer | Pavel Gorbokon <pahanix@gmail.com> | 2010-11-22 16:37:33 +0200 |
commit | 2515ad8a3e03402c1d5a5f9b46c48a3a9bf75081 (patch) | |
tree | 36563275cd602630bfa50663bc189e90a31ffb74 /railties | |
parent | 8c17d30d687b0b9719d6998b1dc8144490132b8d (diff) | |
download | rails-2515ad8a3e03402c1d5a5f9b46c48a3a9bf75081.tar.gz rails-2515ad8a3e03402c1d5a5f9b46c48a3a9bf75081.tar.bz2 rails-2515ad8a3e03402c1d5a5f9b46c48a3a9bf75081.zip |
Fix ruby syntax errors in railties/guides docs
Diffstat (limited to 'railties')
-rw-r--r-- | railties/guides/source/active_record_validations_callbacks.textile | 2 | ||||
-rw-r--r-- | railties/guides/source/security.textile | 2 |
2 files changed, 2 insertions, 2 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> diff --git a/railties/guides/source/security.textile b/railties/guides/source/security.textile index 6f766430c1..5b24d8c8e3 100644 --- a/railties/guides/source/security.textile +++ b/railties/guides/source/security.textile @@ -550,7 +550,7 @@ Ruby uses a slightly different approach than many other languages to match the e <ruby> class File < ActiveRecord::Base - validates :name, format => /^[\w\.\-\+]+$/ + validates :name, :format => /^[\w\.\-\+]+$/ end </ruby> |