Skip to content

Commit

Permalink
Fixed prepositions marking
Browse files Browse the repository at this point in the history
  • Loading branch information
alordash committed Aug 22, 2021
1 parent 136a871 commit 3bb00f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/date-cases/parse-cases/common-parse-cases.js
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ const parseCases = [
for (const match of matches) {
let i = this.expressions[match.index].regex_char == 'E' ? 1 : 0;
let even = (this.expressions[match.index + i].value & 1) == 0;
let indexes = markIndexes.call(this, match.index, 2 + i, true, true);
let indexes = markIndexes.call(this, match.index, 2 + i, true, true, true);
let context = processContexts(contextsData, indexes);
let next = this.expressions[match.index + i + 1];
let timeType;
Expand Down

0 comments on commit 3bb00f2

Please sign in to comment.