class RuboCop::StringUtil::Jaro

def initialize(a, b)

def initialize(a, b)
  if a.size < b.size
    @shorter, @longer = a, b
  else
    @shorter, @longer = b, a
  end
end