From ee3b4e26c66b55ab70b0fe162580d43d1d800116 Mon Sep 17 00:00:00 2001 From: moos Date: Wed, 30 May 2012 15:09:01 -0700 Subject: [PATCH] updated stopword docs --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 933e923..dbcdb7f 100644 --- a/README.md +++ b/README.md @@ -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.isNoun(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.