diff options
author | Mike Gunderloy <MikeG1@larkfarm.com> | 2008-10-09 19:53:36 -0500 |
---|---|---|
committer | Mike Gunderloy <MikeG1@larkfarm.com> | 2008-10-09 19:54:02 -0500 |
commit | efdad935427446095da640dfdbf1846e492d1629 (patch) | |
tree | 45a02d07dd4845ca162f3e03960c8bf14b747dc4 /railties/doc | |
parent | 9b109c9e665da043d9b77f065749db6a51001b9e (diff) | |
download | rails-efdad935427446095da640dfdbf1846e492d1629.tar.gz rails-efdad935427446095da640dfdbf1846e492d1629.tar.bz2 rails-efdad935427446095da640dfdbf1846e492d1629.zip |
Typo fix in routing guide
Diffstat (limited to 'railties/doc')
-rw-r--r-- | railties/doc/guides/routing/routing_outside_in.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/doc/guides/routing/routing_outside_in.txt b/railties/doc/guides/routing/routing_outside_in.txt index 1e070dac46..ff41bc0257 100644 --- a/railties/doc/guides/routing/routing_outside_in.txt +++ b/railties/doc/guides/routing/routing_outside_in.txt @@ -439,7 +439,7 @@ PUT /magazines/1/ads/1 Ads update update a specific ad be DELETE /magazines/1/ads/1 Ads destroy delete a specific ad belonging to a specific magazine -------------------------------------------------------------------------------------------- -This will also create routing helpers such as +magazine_ads_url+ and +magazine_edit_ad_path+. +This will also create routing helpers such as +magazine_ads_url+ and +edit_magazine_ad_path+. ==== Using :name_prefix |