summaryrefslogtreecommitdiff
path: root/lib/did_you_mean/spell_checkers/null_checker.rb
blob: 1306f69d4ad122674c44ff895c8050c117ea0e56 (plain)
1
2
3
4
5
6
module DidYouMean
  class NullChecker
    def initialize(*);  end
    def corrections; [] end
  end
end