CU-CIS-1090-PSC / CIS-1090-Project1

CIS-1090-Project1
0 stars 19 forks source link

Proper Nouns are highlighted as Incorrect #5

Open Chinny911 opened 1 year ago

Chinny911 commented 1 year ago

Proper nouns and other names are highlighted by the spell checker as incorrect. This isn't right because the spell checker should be able to tell proper nouns or popular names and not mark them as incorrect. An example is when you type in "Good morning my name is David" in the simplespell interface. The name David is highlighted as misspelled, which is wrong because the word is in word.js This is a test I wrote in spell checker test.js which failed:

it("Reports that David is spelled right", function () { assert.ok(isSpelledRight("David")); });

Chinny911 commented 1 year ago

See pull request number 18