aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/routing.md
diff options
context:
space:
mode:
authorPablo Torres <tn.pablo@gmail.com>2012-12-02 15:16:07 -0500
committerPablo Torres <tn.pablo@gmail.com>2012-12-02 16:55:50 -0500
commit12c7f8042d5945450d05164a3f333b9a5bea74e6 (patch)
treeb4dffe3d35a83eba9cb97fdaff198f12c8e82fa4 /guides/source/routing.md
parent624069d58a2c4b535140422cc90cd5347f18cd4f (diff)
downloadrails-12c7f8042d5945450d05164a3f333b9a5bea74e6.tar.gz
rails-12c7f8042d5945450d05164a3f333b9a5bea74e6.tar.bz2
rails-12c7f8042d5945450d05164a3f333b9a5bea74e6.zip
Clarify section titles [ci skip]
Diffstat (limited to 'guides/source/routing.md')
-rw-r--r--guides/source/routing.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/routing.md b/guides/source/routing.md
index 2df83be650..038f308a0f 100644
--- a/guides/source/routing.md
+++ b/guides/source/routing.md
@@ -103,7 +103,7 @@ NOTE: Because the router uses the HTTP verb and URL to match inbound requests, f
NOTE: Rails routes are matched in the order they are specified, so if you have a `resources :photos` above a `get 'photos/poll'` the `show` action's route for the `resources` line will be matched before the `get` line. To fix this, move the `get` line **above** the `resources` line so that it is matched first.
-### Paths and URLs
+### Path and URL Helpers
Creating a resourceful route will also expose a number of helpers to the controllers in your application. In the case of `resources :photos`:
@@ -1000,7 +1000,7 @@ Inspecting and Testing Routes
Rails offers facilities for inspecting and testing your routes.
-### Seeing Existing Routes
+### Listing Existing Routes
To get a complete list of the available routes in your application, visit `http://localhost:3000/rails/info/routes` in your browser while your server is running in the **development** environment. You can also execute the `rake routes` command in your terminal to produce the same output.