Skip to content

Commit 3186398

Browse files
committed
remove unnecessary not equal to
1 parent 9598a1f commit 3186398

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/translator/fixer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ function fixMultipleVerb(
246246
const first = newVerb[0];
247247
const notIndex = first.preAdverbs.findIndex((adverb) => adverb.negative);
248248
const newNewVerb: ReadonlyArray<AdverbVerb> =
249-
notIndex !== -1 && first.verb.type !== "modal" &&
249+
notIndex !== -1 && first.verb.type === "non-modal" &&
250250
first.verb.presentSingular !== "is"
251251
? [
252252
{

0 commit comments

Comments
 (0)