aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/getting_started.md
diff options
context:
space:
mode:
authorZachary Scott <e@zzak.io>2015-03-29 12:52:19 -0700
committerZachary Scott <e@zzak.io>2015-03-29 12:52:19 -0700
commite8a334a9ee87362e3a99a8a24eb7d28a6ad7ae04 (patch)
tree94d7dba926efd9446311c373609c67ecd291f9d6 /guides/source/getting_started.md
parenta5f25474a172a059aa56112d6cb19ea8133a0168 (diff)
parentc79b9c86014d9a1cb1f9d8e514975f48619e69c5 (diff)
downloadrails-e8a334a9ee87362e3a99a8a24eb7d28a6ad7ae04.tar.gz
rails-e8a334a9ee87362e3a99a8a24eb7d28a6ad7ae04.tar.bz2
rails-e8a334a9ee87362e3a99a8a24eb7d28a6ad7ae04.zip
Merge pull request #19483 from yui-knk/fix/getting_started
[ci skip] Fix an object of `reference`
Diffstat (limited to 'guides/source/getting_started.md')
-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 922ec3922e..db4e81e32e 100644
--- a/guides/source/getting_started.md
+++ b/guides/source/getting_started.md
@@ -1510,7 +1510,7 @@ comments on articles.
We're going to see the same generator that we used before when creating
the `Article` model. This time we'll create a `Comment` model to hold
-reference of article comments. Run this command in your terminal:
+reference to an article. Run this command in your terminal:
```bash
$ bin/rails generate model Comment commenter:string body:text article:references