Skip to content

Latest commit

 

History

History
39 lines (20 loc) · 993 Bytes

README.md

File metadata and controls

39 lines (20 loc) · 993 Bytes

Build status

MSpell

Identifies spelling mistakes and suggests replacements.

Getting Started

Install the nuget package to get started.

The usage is:

var spellChecker = new MSpell.SpellChecker();

var dictionary = new List {"moon","soon","mono","windows"};

spellChecker.Train(dictionary);

// To get all word in the dictionry within 1 edit distance

var suggestion = spellChecker.GetSuggestedWords("mon", 1);

// The output is sorted by editdistance, prefixmatch, wordlength in order The output should be mono,moon.

Versioning

We use appveyor for versioning.

Authors

Musfiqur Rahman

See also the list of contributors who participated in this project.

License

This project is licensed under the MIT License - see the LICENSE.md file for details