aboutsummaryrefslogtreecommitdiff
path: root/src/correct.rs
blob: 333aba53782cc2da973701267feb1404b1599674 (plain) (blame)
1
2
3
4
// http://norvig.com/spell-correct.html
pub fn correct(word: &str) -> Option<&str> {
    todo!();
}