class RuboCop::Cop::Chef::Correctness::ResourceWithNoneAction

The :nothing action is often typo’d as :none

@example

### incorrect
service 'foo' do
 action :none
end

### correct
service 'foo' do
 action :nothing
end