diff options
author | Xavier Noria <fxn@hashref.com> | 2009-07-02 14:53:16 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2009-07-02 14:53:24 +0200 |
commit | bf5ac9965f12840d469ef2a4a16e8205dbbe5253 (patch) | |
tree | 55b6fcdacf07d79871cf0da9cb9b5e86b5a54055 /railties/guides/source/routing.textile | |
parent | 5b59bff7055647ee084332609e1b803efaab006c (diff) | |
download | rails-bf5ac9965f12840d469ef2a4a16e8205dbbe5253.tar.gz rails-bf5ac9965f12840d469ef2a4a16e8205dbbe5253.tar.bz2 rails-bf5ac9965f12840d469ef2a4a16e8205dbbe5253.zip |
routing guide: removes misleading full stop, thanks to steven_noble
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 1873c428bf..355f385d49 100644 --- a/railties/guides/source/routing.textile +++ b/railties/guides/source/routing.textile @@ -416,7 +416,7 @@ map.resources :magazines do |magazine| end </ruby> -TIP: Further below you'll learn about a convenient shortcut for this construct:<br/>+map.resources :magazines, :has_many => :ads+. +TIP: Further below you'll learn about a convenient shortcut for this construct:<br/>+map.resources :magazines, :has_many => :ads+ In addition to the routes for magazines, this declaration will also create routes for ads, each of which requires the specification of a magazine in the URL: |