aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides
diff options
context:
space:
mode:
authorNeeraj Singh <neerajdotname@gmail.com>2010-06-10 21:49:09 -0400
committerNeeraj Singh <neerajdotname@gmail.com>2010-06-10 21:49:09 -0400
commit54437f30f71e421d9b76d291123673b50ae19e0f (patch)
tree0477695067574828c542a276c7b05e62d465c8ee /railties/guides
parent835fd07b48da7a753a1f22b3889d611946234349 (diff)
downloadrails-54437f30f71e421d9b76d291123673b50ae19e0f.tar.gz
rails-54437f30f71e421d9b76d291123673b50ae19e0f.tar.bz2
rails-54437f30f71e421d9b76d291123673b50ae19e0f.zip
fixing typo
Diffstat (limited to 'railties/guides')
-rw-r--r--railties/guides/source/routing.textile2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/routing.textile b/railties/guides/source/routing.textile
index 79c5f4fabe..cf733bd6f8 100644
--- a/railties/guides/source/routing.textile
+++ b/railties/guides/source/routing.textile
@@ -597,7 +597,7 @@ resources :photos, :as => "images"
will recognize incoming URLs beginning with +/photos+ and route the requests to +PhotosController+:
|_.HTTP verb|_.URL |_.action |_.named helper |
-|GET |/photos |index | images_path_ |
+|GET |/photos |index | images_path |
|GET |/photos/new |new | new_image_path |
|POST |/photos |create | images_path |
|GET |/photos/1 |show | image_path |