Remove trailing commas

This commit is contained in:
toasted-nutbread 2019-11-25 14:41:26 -05:00
parent acb70f126c
commit df9e697fca
2 changed files with 2 additions and 2 deletions

View File

@ -88,5 +88,5 @@ Deinflector.ruleTypes = {
'vs': 0b0000100, // Verb suru
'vk': 0b0001000, // Verb kuru
'adj-i': 0b0010000, // Adjective i
'iru': 0b0100000, // Intermediate -iru endings for progressive or perfect tense
'iru': 0b0100000 // Intermediate -iru endings for progressive or perfect tense
};

View File

@ -220,7 +220,7 @@ class QueryParser {
return {
text: Array.from(part.text),
reading: part.reading,
raw: !part.reading || !part.reading.trim(),
raw: !part.reading || !part.reading.trim()
};
});
});