-
Notifications
You must be signed in to change notification settings - Fork 103
Open
Description
The "N" should be a "V" on line 78
string partOfSpeech;
if (tag.StartsWith("N") || tag.StartsWith("n"))
{
partOfSpeech = "noun";
}
**else if (tag.StartsWith("N") || tag.StartsWith("v"))**
{
partOfSpeech = "verb";
}
else if (tag.StartsWith("J") || tag.StartsWith("a"))
{
partOfSpeech = "adjective";
}
else if (tag.StartsWith("R") || tag.StartsWith("r"))
{
partOfSpeech = "adverb";
}
else
{
partOfSpeech = "noun";Metadata
Metadata
Assignees
Labels
No labels