diff --git a/package.json b/package.json index 18c822d..4abde1f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@lingdocs/pashto-inflector", - "version": "3.8.8", + "version": "3.8.9", "author": "lingdocs.com", "description": "A Pashto inflection and verb conjugation engine, inculding React components for displaying Pashto text, inflections, and conjugations", "homepage": "https://verbs.lingdocs.com", diff --git a/src/lib/human-readable.ts b/src/lib/human-readable.ts index 89bdbba..9eff205 100644 --- a/src/lib/human-readable.ts +++ b/src/lib/human-readable.ts @@ -18,9 +18,9 @@ function humanReadableVerbTense(tense: T.VerbTense): string { ? "simple past" : tense === "imperfectivePast" ? "continuous past" - : tense === "habitualImperfectivePast" + : tense === "habitualPerfectivePast" ? "habitual simple past" - // : tense === "habitualPerfectivePast" + // : tense === "habitualImperfectivePast" : "habitual continuous past"; }