class RuboCop::Cop::Chef::Style::ImmediateNotificationTiming

Use :immediately instead of :immediate for resource notification timing.

@example

### incorrect

template '/etc/www/configures-apache.conf' do
  notifies :restart, 'service[apache]', :immediate
end

### correct

template '/etc/www/configures-apache.conf' do
  notifies :restart, 'service[apache]', :immediately
end