# File lib/acts_as_suggest.rb, line 124
  def similar?(other, threshold = 2)
    self.distance(other) <= threshold ? true : false
  end