aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/getting_started.md
diff options
context:
space:
mode:
authoryui-knk <spiketeika@gmail.com>2015-03-24 09:01:15 +0900
committeryui-knk <spiketeika@gmail.com>2015-03-24 09:01:15 +0900
commitc79b9c86014d9a1cb1f9d8e514975f48619e69c5 (patch)
treeb55856e574f91b6e3a2fab841c5c2c73878ede6a /guides/source/getting_started.md
parent503d9e12887e21015f9b241944dd850614c3e1b3 (diff)
downloadrails-c79b9c86014d9a1cb1f9d8e514975f48619e69c5.tar.gz
rails-c79b9c86014d9a1cb1f9d8e514975f48619e69c5.tar.bz2
rails-c79b9c86014d9a1cb1f9d8e514975f48619e69c5.zip
[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 fe01088b2e..cdd5be4f92 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