diff options
author | eparreno <emili@eparreno.com> | 2010-06-02 21:14:33 +0200 |
---|---|---|
committer | eparreno <emili@eparreno.com> | 2010-06-02 21:14:33 +0200 |
commit | 785caba8666cb15df0bfb0187b857b0131ccdd5e (patch) | |
tree | 580cad95657cd488d37be991392958c04d8a7737 /railties/guides/source/routing.textile | |
parent | 3633cb854165f9e338ecddca516bfb3dabadfa33 (diff) | |
download | rails-785caba8666cb15df0bfb0187b857b0131ccdd5e.tar.gz rails-785caba8666cb15df0bfb0187b857b0131ccdd5e.tar.bz2 rails-785caba8666cb15df0bfb0187b857b0131ccdd5e.zip |
Routing: fix error in nested resources with name_prefix example [#146 state:resolved]
Diffstat (limited to 'railties/guides/source/routing.textile')
-rw-r--r-- | railties/guides/source/routing.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/routing.textile b/railties/guides/source/routing.textile index 2bc1736137..79c5f4fabe 100644 --- a/railties/guides/source/routing.textile +++ b/railties/guides/source/routing.textile @@ -717,7 +717,7 @@ resources :magazines do end </ruby> -This will create routing helpers such as +periodical_ads_url+ and +periodical_edit_ad_path+. +This will create routing helpers such as +magazine_periodical_ads_url+ and +edit_magazine_periodical_ad_path+. h3. Inspecting and Testing Routes |