spelling

A spellchecker written in rust.

How to use

```rust use spelling::spellcheck;

fn main() { let dictionarystring = includestr!("words.txt"); // newline separated spellcheck(dictionary_string, "restaraunt", 3); } ```

Details

This uses the Levenshtein distance as the heuristic for distance.