diff options
author | RSL <sconds@gmail.com> | 2013-05-30 12:17:40 -0400 |
---|---|---|
committer | RSL <sconds@gmail.com> | 2013-05-30 12:17:40 -0400 |
commit | 382419d28fe8c43b88e39b83ac175973a36feca8 (patch) | |
tree | 31ead487a40ea401046a81c9218e302e3e16cbf2 /guides/source | |
parent | 6f30110cb400b847bc684a8e951ea1c4512bd2cd (diff) | |
download | rails-382419d28fe8c43b88e39b83ac175973a36feca8.tar.gz rails-382419d28fe8c43b88e39b83ac175973a36feca8.tar.bz2 rails-382419d28fe8c43b88e39b83ac175973a36feca8.zip |
change additional 'RESTful' routes to 'resourceful' routes as the additional actions may potentially get you farther away from RESTfulness
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/routing.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/routing.md b/guides/source/routing.md index 076b9dd176..ecfb649257 100644 --- a/guides/source/routing.md +++ b/guides/source/routing.md @@ -461,7 +461,7 @@ For other actions, you just need to insert the action name as the first element This allows you to treat instances of your models as URLs, and is a key advantage to using the resourceful style. -### Adding More RESTful Actions +### Adding More Resourceful Actions You are not limited to the seven routes that RESTful routing creates by default. If you like, you may add additional routes that apply to the collection or individual members of the collection. |