lib/rubocop/cop/lint/ambiguous_operator.rb in rubocop-1.65.0 vs lib/rubocop/cop/lint/ambiguous_operator.rb in rubocop-1.65.1
- old
+ new
@@ -12,11 +12,9 @@
#
# # The `*` is interpreted as a splat operator but it could possibly be
# # a `*` method invocation (i.e. `do_something.*(some_array)`).
# do_something *some_array
#
- # @example
- #
# # good
#
# # With parentheses, there's no ambiguity.
# do_something(*some_array)
class AmbiguousOperator < Base