lib/rubocop/cop/rails/exit.rb in rubocop-rails-2.14.2 vs lib/rubocop/cop/rails/exit.rb in rubocop-rails-2.15.0

- old
+ new

@@ -1,10 +1,10 @@ # frozen_string_literal: true module RuboCop module Cop module Rails - # This cop enforces that `exit` calls are not used within a rails app. + # Enforces that `exit` calls are not used within a rails app. # Valid options are instead to raise an error, break, return, or some # other form of stopping execution of current request. # # There are two obvious cases where `exit` is particularly harmful: #