私のroutes.rbファイルには、次のものがあります。
controller :sessions do
get 'login' => :new
post 'login' => :create
delete 'logout' => :destory
end
そして、ビューファイルには次のリンクがあります。
<%= link_to 'Logout', logout_url, :method => :delete%>
しかし、[ログアウト]リンクをクリックすると、このエラーが発生します
Unknown action
The action 'destory' could not be found for SessionsController