spellbound 0.1.1

Bindings to your friendly neighborhood spellchecker.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
extern crate spellbound;

use std::env;

use spellbound::Checker;

fn main() {
    let text = env::args().skip(1).collect::<Vec<String>>().join(" ");

    let mut checker = Checker::new();

    for error in checker.check(&text) {
        println!("ERROR: {}", error.text());
    }
}