stava Crate Status Build Status

CLI tool to perform spell checking.

Rust implementation of Peter Norvig's Spell Corrector.

```bash USAGE: stava [FILES]...

ARGS: Word to correct ... Files to learn words from ```

Currently stava only supports the English alphabet.

Installation

bash $ cargo install stava

Usage

Use the default word file bash $ stava bycyle bicycle

Use your own files bash $ echo "bicycle" > words.txt $ echo "some other words" > words2.txt $ stava bycyle words.txt words2.txt bicycle