aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorZachary Scott <e@zzak.io>2014-12-14 20:40:13 -0500
committerZachary Scott <e@zzak.io>2014-12-14 20:40:13 -0500
commit7607687c9166f8b2f8aa4d107bdbaadb99d4bb43 (patch)
treecd447709e6d2ab79479c3cea24a66c0dfe149ebc /guides/source
parent67fe22d8f97431a861c3c561bb8d486d21c01546 (diff)
downloadrails-7607687c9166f8b2f8aa4d107bdbaadb99d4bb43.tar.gz
rails-7607687c9166f8b2f8aa4d107bdbaadb99d4bb43.tar.bz2
rails-7607687c9166f8b2f8aa4d107bdbaadb99d4bb43.zip
Fix path typo to Article model in Getting Started [ci skip]
Diffstat (limited to 'guides/source')
-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 7c40529a30..c2a0fde54e 100644
--- a/guides/source/getting_started.md
+++ b/guides/source/getting_started.md
@@ -738,7 +738,7 @@ database columns. In the first line we do just that (remember that
`@article.save` is responsible for saving the model in the database. Finally,
we redirect the user to the `show` action, which we'll define later.
-TIP: You might be wondering why the `A` in `Article.new` is capitalized above, whereas most other references to articles in this guide have used lowercase. In this context, we are referring to the class named `Article` that is defined in `\models\article.rb`. Class names in Ruby must begin with a capital letter.
+TIP: You might be wondering why the `A` in `Article.new` is capitalized above, whereas most other references to articles in this guide have used lowercase. In this context, we are referring to the class named `Article` that is defined in `app/models/article.rb`. Class names in Ruby must begin with a capital letter.
TIP: As we'll see later, `@article.save` returns a boolean indicating whether
the article was saved or not.