ArchiMetrics.CodeReview.Rules.Tests.Rules.SpellChecker.Spell C# (CSharp) Метод

Spell() публичный Метод

public Spell ( string word ) : bool
word string
Результат bool
		public bool Spell(string word)
		{
			return _knownPatterns.IsExempt(word) || _speller.Spell(word);
		}