ArchiMetrics.CodeReview.Rules.Tests.Rules.SpellChecker.Spell C# (CSharp) Method

Spell() public method

public Spell ( string word ) : bool
word string
return bool
		public bool Spell(string word)
		{
			return _knownPatterns.IsExempt(word) || _speller.Spell(word);
		}