We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc065ba commit 08c88d9Copy full SHA for 08c88d9
dictionary/parser.ts
@@ -295,7 +295,10 @@ function verbOnly(tagInside: Parser<unknown>): Parser<VerbForms> {
295
FutureTense: string;
296
};
297
if (conjugations == null) {
298
- throw new ArrayResultError(`no verb conjugation found for "${verb}"`);
+ throw new ArrayResultError(
299
+ `no verb conjugation found for "${verb}". consider providing all ` +
300
+ "conjugations instead",
301
+ );
302
}
303
if (verb !== conjugations.Infinitive) {
304
throw new ArrayResultError(
0 commit comments