class RuboCop::StringUtil::Jaro

def initialize(a, b)

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