blob: 154358cd45b83b834785a836892ffd47270c57d7 (
plain) (
tree)
|
|
# frozen_string_literal: true
module Rails
module Command
module Spellchecker # :nodoc:
def self.suggest(word, from:)
DidYouMean::SpellChecker.new(dictionary: from.map(&:to_s)).correct(word).first
end
end
end
end
|