diff options
author | yui-knk <spiketeika@gmail.com> | 2015-03-24 09:01:15 +0900 |
---|---|---|
committer | yui-knk <spiketeika@gmail.com> | 2015-03-24 09:01:15 +0900 |
commit | c79b9c86014d9a1cb1f9d8e514975f48619e69c5 (patch) | |
tree | b55856e574f91b6e3a2fab841c5c2c73878ede6a | |
parent | 503d9e12887e21015f9b241944dd850614c3e1b3 (diff) | |
download | rails-c79b9c86014d9a1cb1f9d8e514975f48619e69c5.tar.gz rails-c79b9c86014d9a1cb1f9d8e514975f48619e69c5.tar.bz2 rails-c79b9c86014d9a1cb1f9d8e514975f48619e69c5.zip |
[ci skip] Fix an object of `reference`
-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 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 |