spelling_corrector

Crates.iospelling_corrector
lib.rsspelling_corrector
version0.2.3
sourcesrc
created_at2020-01-10 19:19:51.655572
updated_at2020-01-16 13:12:27.062647
descriptionA simple spelling corrector
homepage
repositoryhttps://github.com/NavyaZaveri/spell_checker
max_upload_size
id197289
size6,536,673
Navya (NavyaZaveri)

documentation

README

spelling_corrector

A simple command line utility / library to correct typos (and an excuse for me to learn some rust ;)). Based on Peter Norvig's excellent article.

Example usage:

 use spelling_corrector::corrector;
 let correct = corrector::SimpleCorrector::default(); 
 let words = correct.correct_sentence("the architexture is inconcievable");
 assert_eq!(words, "the architecture is inconceivable")
Commit count: 28

cargo fmt