We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4df0178 commit 9c5b1feCopy full SHA for 9c5b1fe
static/js/pos-core-analyzer.js
@@ -90,13 +90,14 @@ const posAnalyzer = {
90
return;
91
}
92
93
- if (tags.includes('QuestionWord') || this.questionWords.pronouns.includes(word) || this.questionWords.adverbs.includes(word)) {
+ if (tags.includes('QuestionWord')) {
94
if (this.questionWords.pronouns.includes(word)) {
95
addToCategory('pronoun', word);
96
+ return;
97
} else if (this.questionWords.adverbs.includes(word)) {
98
addToCategory('adverb', word);
99
100
- return;
101
102
103
if (tags.some(tag => [
0 commit comments