Skip to content

Commit d3aa43b

Browse files
committed
Rubocop: Enable Naming/BinaryOperatorParameterName cop
1 parent 4123e78 commit d3aa43b

File tree

1 file changed

+2
-2
lines changed
  • lib/active_record/connection_adapters/sqlserver

1 file changed

+2
-2
lines changed

lib/active_record/connection_adapters/sqlserver/utils.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ def quoted_raw
6161
quote @raw_name
6262
end
6363

64-
def ==(o)
65-
o.class == self.class && o.parts == parts
64+
def ==(other)
65+
other.class == self.class && other.parts == parts
6666
end
6767
alias_method :eql?, :==
6868

0 commit comments

Comments
 (0)