updated stopword docs

This commit is contained in:
moos 2012-05-30 15:09:01 -07:00
parent 4d5acb9dbf
commit ee3b4e26c6
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ would be considered nouns. (see http://nltk.googlecode.com/svn/trunk/doc/book/c
Determine if a word is a particular POS.
```
wordpos.isNoun(word, callback) -- callback receives result (true/false) if word is a noun.
wordpos.<b>isNoun</b>(word, callback) -- callback receives result (true/false) if word is a noun.
wordpos.isVerb(word, callback) -- callback receives result (true/false) if word is a verb.
wordpos.isAdjective(word, callback) -- callback receives result (true/false) if word is an adjective.
wordpos.isAdverb(word, callback) -- callback receives result (true/false) if word is an adverb.