lib/rubocop/cop/style/keyword_arguments_merging.rb in rubocop-1.68.0 vs lib/rubocop/cop/style/keyword_arguments_merging.rb in rubocop-1.69.0
- old
+ new
@@ -4,11 +4,11 @@
module Cop
module Style
# When passing an existing hash as keyword arguments, provide additional arguments
# directly rather than using `merge`.
#
- # Providing arguments directly is more performant, than using `merge`, and
- # also leads to a shorter and simpler code.
+ # Providing arguments directly is more performant than using `merge`, and
+ # also leads to shorter and simpler code.
#
# @example
# # bad
# some_method(**opts.merge(foo: true))
# some_method(**opts.merge(other_opts))