ArchiMetrics.CodeReview.Rules.Tests.Rules.SpellChecker.Spell C# (CSharp) Méthode

Spell() public méthode

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