pub fn find_close_words(dictionary: Vec<String>, word: &str) -> Vec<WordDiff>
Expand description

Find words in the provided dictionary that are close to the search word.

The return value is an ordered list corresponding to every word in the dictionary, with the closest matches first.