1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

fixing typo

This commit is contained in:
Neeraj Singh 2010-06-10 21:49:09 -04:00
parent 835fd07b48
commit 54437f30f7

View file

@ -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 |