diff options
author | Eileen M. Uchitelle <eileencodes@gmail.com> | 2014-07-01 08:21:34 -0400 |
---|---|---|
committer | Eileen M. Uchitelle <eileencodes@gmail.com> | 2014-07-01 08:21:34 -0400 |
commit | 898bc73a53f4a4ba7695ed1cc81e3d94ab62b253 (patch) | |
tree | ab50574a1db0c3ea94703886531ae6fa686639fe | |
parent | da57d0b2d4375c09f56c9d94ef78a3d2ce8f4c62 (diff) | |
parent | fbb04475ebacb0073e640e6dfbd19f1944583898 (diff) | |
download | rails-898bc73a53f4a4ba7695ed1cc81e3d94ab62b253.tar.gz rails-898bc73a53f4a4ba7695ed1cc81e3d94ab62b253.tar.bz2 rails-898bc73a53f4a4ba7695ed1cc81e3d94ab62b253.zip |
Merge pull request #15997 from cirosantilli/typo
Fix doc unwanted dl Admin:: [ci skip]
-rw-r--r-- | actionpack/lib/action_dispatch/routing/mapper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_dispatch/routing/mapper.rb b/actionpack/lib/action_dispatch/routing/mapper.rb index aac5546aa1..3774b625af 100644 --- a/actionpack/lib/action_dispatch/routing/mapper.rb +++ b/actionpack/lib/action_dispatch/routing/mapper.rb @@ -717,7 +717,7 @@ module ActionDispatch # resources :posts, module: "admin" # # If you want to route /admin/posts to +PostsController+ - # (without the Admin:: module prefix), you could use + # (without the <tt>Admin::</tt> module prefix), you could use # # scope "/admin" do # resources :posts |