diff options
author | Steve Klabnik <steve@steveklabnik.com> | 2013-03-25 12:02:30 -0700 |
---|---|---|
committer | Steve Klabnik <steve@steveklabnik.com> | 2013-03-25 12:02:30 -0700 |
commit | 7e91c9a42321514851887fe65199cd20dc12bdaf (patch) | |
tree | d44c82773ed82fd9107c22e923ff279c9495140a /guides/source/upgrading_ruby_on_rails.md | |
parent | be71b0ecbe4b6f2416296dd0c120b652151ebcaa (diff) | |
parent | 441fa86b73f191494d6734ffd51a5b6b986574cb (diff) | |
download | rails-7e91c9a42321514851887fe65199cd20dc12bdaf.tar.gz rails-7e91c9a42321514851887fe65199cd20dc12bdaf.tar.bz2 rails-7e91c9a42321514851887fe65199cd20dc12bdaf.zip |
Merge pull request #9925 from senny/relative_guide_links
use relative links inside guides [ci skip]
Diffstat (limited to 'guides/source/upgrading_ruby_on_rails.md')
-rw-r--r-- | guides/source/upgrading_ruby_on_rails.md | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/guides/source/upgrading_ruby_on_rails.md b/guides/source/upgrading_ruby_on_rails.md index a384e74d28..8ad2e2bdb4 100644 --- a/guides/source/upgrading_ruby_on_rails.md +++ b/guides/source/upgrading_ruby_on_rails.md @@ -125,7 +125,10 @@ Please note that you should wait to set `secret_key_base` until you have 100% of get 'clashing/:id' => 'test#example', as: :example ``` -In the first case, you can simply avoid using the same name for multiple routes. In the second, you can use the `only` or `except` options provided by the `resources` method to restrict the routes created as detailed in the [Routing Guide](http://guides.rubyonrails.org/routing.html#restricting-the-routes-created). +In the first case, you can simply avoid using the same name for multiple +routes. In the second, you can use the `only` or `except` options provided by +the `resources` method to restrict the routes created as detailed in the +[Routing Guide](routing.html#restricting-the-routes-created). * Rails 4.0 also changed the way unicode character routes are drawn. Now you can draw unicode character routes directly. If you already draw such routes, you must change them, for example: |