A simple spelling corrector for Rust.
Inspired by Norvig's Spelling Corrector
[dependencies]
dym = "1.0.0"
extern crate dym;
use dym::Lexicon;
let mut lex = Lexicon::new();
lex.insert("hello");
lex.insert("goodbye");
lex.insert("hell");
let corrections = lex.corrections_for("hel");
Type a misspelled git command.
cargo run --release --example commands pul
This outputs:
'pul' is not a command! did you mean:
push
pull
Takes in a dictionary file and will suggest corrections for words typed through stdin.
cargo run --release --example spellchecker examples/words.txt