aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArun Agrawal <arunagw@gmail.com>2015-03-02 10:55:06 +0100
committerArun Agrawal <arunagw@gmail.com>2015-03-02 10:55:06 +0100
commitec8d8040a9c2d63c34ce0d3d3186c6fbb4230f37 (patch)
tree3e3981a47d26e049c33d3351038367618d032eba
parentc34a5bff94e2af111f7c7f8f0bce8f94e1fd798b (diff)
parentc7172f50408cc29f22fa5be43f54ffa0dc43657b (diff)
downloadrails-ec8d8040a9c2d63c34ce0d3d3186c6fbb4230f37.tar.gz
rails-ec8d8040a9c2d63c34ce0d3d3186c6fbb4230f37.tar.bz2
rails-ec8d8040a9c2d63c34ce0d3d3186c6fbb4230f37.zip
Merge pull request #19167 from limekin/master
On guides, correcting incorrect controller name used on routing.md.
-rw-r--r--guides/source/routing.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/routing.md b/guides/source/routing.md
index a689e131ff..b5defc9d20 100644
--- a/guides/source/routing.md
+++ b/guides/source/routing.md
@@ -229,7 +229,7 @@ or, for a single case:
resources :articles, path: '/admin/articles'
```
-In each of these cases, the named routes remain the same as if you did not use `scope`. In the last case, the following paths map to `PostsController`:
+In each of these cases, the named routes remain the same as if you did not use `scope`. In the last case, the following paths map to `ArticlesController`:
| HTTP Verb | Path | Controller#Action | Named Helper |
| --------- | ------------------------ | -------------------- | ---------------------- |