diff options
author | Rory O’Kane <rory@roryokane.com> | 2014-06-28 01:54:41 -0400 |
---|---|---|
committer | Rory O’Kane <rory@roryokane.com> | 2014-06-28 01:54:41 -0400 |
commit | 25a49953133f40cec4967a67c660332fa51db33c (patch) | |
tree | d7a80c7ce2ba290d7c5adf57f4fbe70906a77fc7 /guides/source | |
parent | e6ca8e2c133e20a674e2fb7270abddb2b5f53006 (diff) | |
download | rails-25a49953133f40cec4967a67c660332fa51db33c.tar.gz rails-25a49953133f40cec4967a67c660332fa51db33c.tar.bz2 rails-25a49953133f40cec4967a67c660332fa51db33c.zip |
Add missing period in Getting Started guide
Within section 5.10 Adding Some Validation
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/getting_started.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md index 4a0600d02a..4fe181bb9d 100644 --- a/guides/source/getting_started.md +++ b/guides/source/getting_started.md @@ -1007,7 +1007,7 @@ These changes will ensure that all articles have a title that is at least five characters long. Rails can validate a variety of conditions in a model, including the presence or uniqueness of columns, their format, and the existence of associated objects. Validations are covered in detail in [Active -Record Validations](active_record_validations.html) +Record Validations](active_record_validations.html). With the validation now in place, when you call `@article.save` on an invalid article, it will return `false`. If you open |