diff options
author | Claudio B. <claudiob@users.noreply.github.com> | 2015-08-09 11:12:03 -0700 |
---|---|---|
committer | Claudio B. <claudiob@users.noreply.github.com> | 2015-08-09 11:12:03 -0700 |
commit | 644c4efdc9e1273ed61c71196e81b52376161ad5 (patch) | |
tree | 9e0e8f7c639aeb307a5b24fa4955b2dad4a47a5e | |
parent | 378e3a666e9ed6b0fb037a1082ff0b13b850acaa (diff) | |
parent | 0082ffeff133d4b49f5ccffbd9c8033b25a4e640 (diff) | |
download | rails-644c4efdc9e1273ed61c71196e81b52376161ad5.tar.gz rails-644c4efdc9e1273ed61c71196e81b52376161ad5.tar.bz2 rails-644c4efdc9e1273ed61c71196e81b52376161ad5.zip |
Merge pull request #21177 from brooksreese/single_crud_operation
[ci skip] Note that each action maps to a specific CRUD operation
-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 079fd87a64..732932b26e 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 |