Example #1
0
 /// <summary>
 /// Checks whether the specified word is spelled correctly.
 /// </summary>
 /// <param name="word">The word to check.</param>
 /// <returns><c>true</c> if the word is spelled correctly, <c>false</c> otherwise.</returns>
 public bool Check(string word)
 {
     return(Voikko.Spell(word));
 }