diff options
author | Rafael França <rafaelmfranca@gmail.com> | 2019-02-01 23:14:41 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-01 23:14:41 -0500 |
commit | 921d1d2d507480f41218e69555d678d41e465524 (patch) | |
tree | c395c1e5a7c5bf3899ac443b52fc5c83182f5c44 /guides | |
parent | e50ed29e53ebade52eb244880b5012bbbd6e022f (diff) | |
parent | fc548094612047ced508813fe0a6234399c76243 (diff) | |
download | rails-921d1d2d507480f41218e69555d678d41e465524.tar.gz rails-921d1d2d507480f41218e69555d678d41e465524.tar.bz2 rails-921d1d2d507480f41218e69555d678d41e465524.zip |
Merge pull request #35136 from andyw8/routes-syntax
Use consistent hash syntax for routes
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/routing.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/routing.md b/guides/source/routing.md index a33ac6a589..92d5b45e7d 100644 --- a/guides/source/routing.md +++ b/guides/source/routing.md @@ -260,7 +260,7 @@ In each of these cases, the named routes remain the same as if you did not use ` | PATCH/PUT | /admin/articles/:id | articles#update | article_path(:id) | | DELETE | /admin/articles/:id | articles#destroy | article_path(:id) | -TIP: _If you need to use a different controller namespace inside a `namespace` block you can specify an absolute controller path, e.g: `get '/foo' => '/foo#index'`._ +TIP: _If you need to use a different controller namespace inside a `namespace` block you can specify an absolute controller path, e.g: `get '/foo', to: '/foo#index'`._ ### Nested Resources |