Report abuse

# why does this
<%= link_to_remote 'destroy', :url => workout_url(workout), :method => :delete, :confirm => "really?" %>

# which generates this html
destroy

# end up calling the show method on my controller?
# everything else about my restful controller works just great.