aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorSean Griffin <sean@thoughtbot.com>2014-06-28 06:28:59 -0600
committerSean Griffin <sean@thoughtbot.com>2014-06-28 06:28:59 -0600
commitdcacaf2eebfebb1e919be07049cd9dd5e0571992 (patch)
treed7a80c7ce2ba290d7c5adf57f4fbe70906a77fc7 /guides
parente6ca8e2c133e20a674e2fb7270abddb2b5f53006 (diff)
parent25a49953133f40cec4967a67c660332fa51db33c (diff)
downloadrails-dcacaf2eebfebb1e919be07049cd9dd5e0571992.tar.gz
rails-dcacaf2eebfebb1e919be07049cd9dd5e0571992.tar.bz2
rails-dcacaf2eebfebb1e919be07049cd9dd5e0571992.zip
Merge pull request #15954 from roryokane/getting-started-guide-add-period
Add missing period in Getting Started guide
Diffstat (limited to 'guides')
-rw-r--r--guides/source/getting_started.md2
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