aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source/routing.textile
diff options
context:
space:
mode:
authorJoseph Pecoraro <joepeck02@gmail.com>2009-05-29 21:09:01 -0400
committerJoseph Pecoraro <joepeck02@gmail.com>2009-05-29 21:09:01 -0400
commit7749e1784c1127cf532d9f41a0331ed266ebec6d (patch)
treecc35591094caa5d896aa7536422b5a3bab089d2f /railties/guides/source/routing.textile
parent3aeec3209c04219c3e78cce060e6c0e284e60108 (diff)
downloadrails-7749e1784c1127cf532d9f41a0331ed266ebec6d.tar.gz
rails-7749e1784c1127cf532d9f41a0331ed266ebec6d.tar.bz2
rails-7749e1784c1127cf532d9f41a0331ed266ebec6d.zip
Grammer: 'a' => 'an' where applicable.
Diffstat (limited to 'railties/guides/source/routing.textile')
-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 173b889546..41ca4ecb0c 100644
--- a/railties/guides/source/routing.textile
+++ b/railties/guides/source/routing.textile
@@ -236,7 +236,7 @@ will recognize incoming URLs containing +photo+ but route the requests to the Im
|GET |/photos/new |Images |new |return an HTML form for creating a new image|
|POST |/photos |Images |create |create a new image|
|GET |/photos/1 |Images |show |display a specific image|
-|GET |/photos/1/edit |Images |edit |return an HTML form for editing a image|
+|GET |/photos/1/edit |Images |edit |return an HTML form for editing an image|
|PUT |/photos/1 |Images |update |update a specific image|
|DELETE |/photos/1 |Images |destroy |delete a specific image|