thinkroth/Sentimental

"till" gets analyzed as "ill"

wizonesolutions opened this issue · 5 comments

And it gets downscored. Anything I can configure on my end to fix this?

This shouldn't be happening. Can you give me any steps to reproduce?

analyze("thinkroth is till");
gives me:
{ score: 0,
comparative: 0,
positive: { score: 0, comparative: 0, words: [], adjectives: [] },
negative: { score: 0, comparative: 0, words: [], adjectives: [] } }

analyze("till");
gives me:
{ score: 0,
comparative: 0,
positive: { score: 0, comparative: 0, words: [], adjectives: [] },
negative: { score: 0, comparative: 0, words: [], adjectives: [] } }

Thanks.

Hmm, that's strange! Let me try again and see if it happens.

Try:

analyze("I'll be here till 5");

Fixed. Turns out it's the I'll that was causing the problem there. Good catch. Thanks. #4

Well, that's fixed. Running into something else weird...though maybe normal. Will open separate issue. Can you npm publish btw? Thanks.