diff options
author | Yves Senn <yves.senn@gmail.com> | 2015-05-31 13:14:40 +0200 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2015-05-31 13:14:40 +0200 |
commit | 1a4f470d59795f51c29f9eddccccbc4b371d808c (patch) | |
tree | 8224520c6ae318311326d383975ad11ec4eaa382 | |
parent | b25436abc446c682610756af74257fd86151fb92 (diff) | |
download | rails-1a4f470d59795f51c29f9eddccccbc4b371d808c.tar.gz rails-1a4f470d59795f51c29f9eddccccbc4b371d808c.tar.bz2 rails-1a4f470d59795f51c29f9eddccccbc4b371d808c.zip |
no rails command short-cuts in the getting-started guide. [ci skip]
The full command name is more expressive.
-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 5ef376531d..8cdb25c0c6 100644 --- a/guides/source/getting_started.md +++ b/guides/source/getting_started.md @@ -400,7 +400,7 @@ a controller called `ArticlesController`. You can do this by running this command: ```bash -$ bin/rails g controller articles +$ bin/rails generate controller articles ``` If you open up the newly generated `app/controllers/articles_controller.rb` |