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);
		}