aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/getting_started.md
diff options
context:
space:
mode:
authorRalin Chimev <ralin.chimev@gmail.com>2016-04-28 11:08:10 +0300
committerRalin Chimev <ralin.chimev@gmail.com>2016-04-28 11:08:10 +0300
commit94481da3420e1b3de34605a17c5d99fac1b6c02a (patch)
tree89c21929fc2ee17fe01dff3551890a9ee297bcf1 /guides/source/getting_started.md
parent2c7d7c67457f1e300172b1e5b0eb9746a564f10a (diff)
downloadrails-94481da3420e1b3de34605a17c5d99fac1b6c02a.tar.gz
rails-94481da3420e1b3de34605a17c5d99fac1b6c02a.tar.bz2
rails-94481da3420e1b3de34605a17c5d99fac1b6c02a.zip
Fix inconsistent usage of capital letter in rails generate command examples
Diffstat (limited to 'guides/source/getting_started.md')
-rw-r--r--guides/source/getting_started.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md
index ae631ae58d..13b4763b6f 100644
--- a/guides/source/getting_started.md
+++ b/guides/source/getting_started.md
@@ -244,11 +244,11 @@ Ruby) which is processed by the request cycle in Rails before being sent to the
user.
To create a new controller, you will need to run the "controller" generator and
-tell it you want a controller called "welcome" with an action called "index",
+tell it you want a controller called "Welcome" with an action called "index",
just like this:
```bash
-$ bin/rails generate controller welcome index
+$ bin/rails generate controller Welcome index
```
Rails will create several files and a route for you.
@@ -327,7 +327,7 @@ end
application to the welcome controller's index action and `get 'welcome/index'`
tells Rails to map requests to <http://localhost:3000/welcome/index> to the
welcome controller's index action. This was created earlier when you ran the
-controller generator (`bin/rails generate controller welcome index`).
+controller generator (`bin/rails generate controller Welcome index`).
Launch the web server again if you stopped it to generate the controller (`bin/rails
server`) and navigate to <http://localhost:3000> in your browser. You'll see the
@@ -406,7 +406,7 @@ a controller called `ArticlesController`. You can do this by running this
command:
```bash
-$ bin/rails generate controller articles
+$ bin/rails generate controller Articles
```
If you open up the newly generated `app/controllers/articles_controller.rb`