diff options
author | Brooks Reese <brooksreese@gmail.com> | 2015-08-09 11:16:20 -0500 |
---|---|---|
committer | Brooks Reese <brooksreese@gmail.com> | 2015-08-09 11:16:20 -0500 |
commit | 0082ffeff133d4b49f5ccffbd9c8033b25a4e640 (patch) | |
tree | 39cd0ce4e00a858eca8e6aa31afcb5c161c80979 /guides/source | |
parent | 752432e82f3032e96ba609b65437cd8e8b8d3939 (diff) | |
download | rails-0082ffeff133d4b49f5ccffbd9c8033b25a4e640.tar.gz rails-0082ffeff133d4b49f5ccffbd9c8033b25a4e640.tar.bz2 rails-0082ffeff133d4b49f5ccffbd9c8033b25a4e640.zip |
[ci skip] Note that each action maps to a specific CRUD operation
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/routing.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/guides/source/routing.md b/guides/source/routing.md index cf828462ce..a710c46d81 100644 --- a/guides/source/routing.md +++ b/guides/source/routing.md @@ -83,7 +83,9 @@ Rails would dispatch that request to the `destroy` method on the `photos` contro ### CRUD, Verbs, and Actions -In Rails, a resourceful route provides a mapping between HTTP verbs and URLs to controller actions. By convention, each action also maps to particular CRUD operations in a database. A single entry in the routing file, such as: +In Rails, a resourceful route provides a mapping between HTTP verbs and URLs to +controller actions. By convention, each action also maps to a specific CRUD +operation in a database. A single entry in the routing file, such as: ```ruby resources :photos |