diff options
author | Thiago Augusto <thiago.android88@gmail.com> | 2015-09-22 10:17:43 -0300 |
---|---|---|
committer | Thiago Augusto <thiago.android88@gmail.com> | 2015-09-22 10:17:43 -0300 |
commit | 89c53ece472776d1b87f7d7ac14c68313c1dd34c (patch) | |
tree | 0dd99a9372a349bfe9980ac34b55fe1bf5e86c78 | |
parent | 1165e9c898a17fadf8f91986ba2f25fb47651d53 (diff) | |
download | rails-89c53ece472776d1b87f7d7ac14c68313c1dd34c.tar.gz rails-89c53ece472776d1b87f7d7ac14c68313c1dd34c.tar.bz2 rails-89c53ece472776d1b87f7d7ac14c68313c1dd34c.zip |
Update routing.md
-rw-r--r-- | guides/source/routing.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/routing.md b/guides/source/routing.md index e4799d93fa..1fd38c0940 100644 --- a/guides/source/routing.md +++ b/guides/source/routing.md @@ -7,7 +7,7 @@ This guide covers the user-facing features of Rails routing. After reading this guide, you will know: -* How to interpret the code in `routes.rb`. +* How to interpret the code in `config/routes.rb`. * How to construct your own routes, using either the preferred resourceful style or the `match` method. * What parameters to expect an action to receive. * How to automatically create paths and URLs using route helpers. @@ -1118,7 +1118,7 @@ Rails offers facilities for inspecting and testing your 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. -Both methods will list all of your routes, in the same order that they appear in `routes.rb`. For each route, you'll see: +Both methods will list all of your routes, in the same order that they appear in `config/routes.rb`. For each route, you'll see: * The route name (if any) * The HTTP verb used (if the route doesn't respond to all verbs) |