From 13b4a9e8d7b3d8335ba96a5b408ee8e7a310bafc Mon Sep 17 00:00:00 2001 From: Ryan Bigg Date: Mon, 4 May 2009 14:08:30 +1000 Subject: [PATCH] Use the word 'action' over 'method'... is clearer and helps when people are grepping the document for the word 'method' --- railties/guides/source/routing.textile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/railties/guides/source/routing.textile b/railties/guides/source/routing.textile index e9adb4b308..173b889546 100644 --- a/railties/guides/source/routing.textile +++ b/railties/guides/source/routing.textile @@ -695,7 +695,7 @@ Regular routes need not use the +connect+ method. You can use any other name her map.logout '/logout', :controller => 'sessions', :action => 'destroy' -This will do two things. First, requests to +/logout+ will be sent to the +destroy+ method of the +Sessions+ controller. Second, Rails will maintain the +logout_path+ and +logout_url+ helpers for use within your code. +This will do two things. First, requests to +/logout+ will be sent to the +destroy+ action of the +Sessions+ controller. Second, Rails will maintain the +logout_path+ and +logout_url+ helpers for use within your code. h4. Route Requirements