aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2015-10-20 13:43:16 +0200
committerYves Senn <yves.senn@gmail.com>2015-10-20 13:43:16 +0200
commitb6127d8871fc77815d30d36be56d2fb231b060a3 (patch)
tree0734c85ef027d44632a01caa12abd4bcb1440e67
parent9be4ea81846b016752467cb0459fc90e1143ebf3 (diff)
parent666e2cc654423ed6b48ed8a1514e4a8ba7089169 (diff)
downloadrails-b6127d8871fc77815d30d36be56d2fb231b060a3.tar.gz
rails-b6127d8871fc77815d30d36be56d2fb231b060a3.tar.bz2
rails-b6127d8871fc77815d30d36be56d2fb231b060a3.zip
Merge pull request #22004 from yui-knk/fix_method_to_action
[ci skip] Replace "destroy` method" with `destroy` action`
-rw-r--r--guides/source/routing.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/routing.md b/guides/source/routing.md
index 3175716a9c..245689932b 100644
--- a/guides/source/routing.md
+++ b/guides/source/routing.md
@@ -79,7 +79,7 @@ it asks the router to map it to a controller action. If the first matching route
resources :photos
```
-Rails would dispatch that request to the `destroy` method on the `photos` controller with `{ id: '17' }` in `params`.
+Rails would dispatch that request to the `destroy` action on the `photos` controller with `{ id: '17' }` in `params`.
### CRUD, Verbs, and Actions