We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9598a1f commit 3186398Copy full SHA for 3186398
1 file changed
src/translator/fixer.ts
@@ -246,7 +246,7 @@ function fixMultipleVerb(
246
const first = newVerb[0];
247
const notIndex = first.preAdverbs.findIndex((adverb) => adverb.negative);
248
const newNewVerb: ReadonlyArray<AdverbVerb> =
249
- notIndex !== -1 && first.verb.type !== "modal" &&
+ notIndex !== -1 && first.verb.type === "non-modal" &&
250
first.verb.presentSingular !== "is"
251
? [
252
{
0 commit comments