aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeff Rodriguez <jeff@jeffrodriguez.com>2013-06-27 09:18:08 -0700
committerJeff Rodriguez <jeff@jeffrodriguez.com>2013-06-27 09:18:08 -0700
commitd4dca25d9db2e53c20d699d8da85c74a8273390a (patch)
treece6914f3599a4ba06cb209743beaa08bd82b5996
parentb22cbf826763098bec6206f59f17d92c40b58f0a (diff)
downloadrails-d4dca25d9db2e53c20d699d8da85c74a8273390a.tar.gz
rails-d4dca25d9db2e53c20d699d8da85c74a8273390a.tar.bz2
rails-d4dca25d9db2e53c20d699d8da85c74a8273390a.zip
Removed "to:" from root directive and fixed typo ":to"
`root :to` is invalid syntax `root to:` is valid, but the generated routes file omits `to:`
-rw-r--r--guides/source/getting_started.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md
index 455907535b..e6c610e817 100644
--- a/guides/source/getting_started.md
+++ b/guides/source/getting_started.md
@@ -230,16 +230,16 @@ Blog::Application.routes.draw do
# first created -> highest priority.
# ...
# You can have the root of your site routed with "root"
- # root to: "welcome#index"
+ # root "welcome#index"
```
-This is your application's _routing file_ which holds entries in a special DSL (domain-specific language) that tells Rails how to connect incoming requests to controllers and actions. This file contains many sample routes on commented lines, and one of them actually shows you how to connect the root of your site to a specific controller and action. Find the line beginning with `root :to` and uncomment it. It should look something like the following:
+This is your application's _routing file_ which holds entries in a special DSL (domain-specific language) that tells Rails how to connect incoming requests to controllers and actions. This file contains many sample routes on commented lines, and one of them actually shows you how to connect the root of your site to a specific controller and action. Find the line beginning with `root` and uncomment it. It should look something like the following:
```ruby
-root to: "welcome#index"
+root "welcome#index"
```
-The `root to: "welcome#index"` tells Rails to map requests to the root of the 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 (`rails generate controller welcome index`).
+The `root "welcome#index"` tells Rails to map requests to the root of the 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 (`rails generate controller welcome index`).
If you navigate to <http://localhost:3000> in your browser, you'll see the `Hello, Rails!` message you put into `app/views/welcome/index.html.erb`, indicating that this new route is indeed going to `WelcomeController`'s `index` action and is rendering the view correctly.
@@ -260,7 +260,7 @@ Blog::Application.routes.draw do
resources :posts
- root to: "welcome#index"
+ root "welcome#index"
end
```