oops humanReadableVerbTense was wrong

This commit is contained in:
lingdocs 2022-09-09 17:47:45 +04:00
parent 70de3344a7
commit c408737901
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "@lingdocs/pashto-inflector", "name": "@lingdocs/pashto-inflector",
"version": "3.8.8", "version": "3.8.9",
"author": "lingdocs.com", "author": "lingdocs.com",
"description": "A Pashto inflection and verb conjugation engine, inculding React components for displaying Pashto text, inflections, and conjugations", "description": "A Pashto inflection and verb conjugation engine, inculding React components for displaying Pashto text, inflections, and conjugations",
"homepage": "https://verbs.lingdocs.com", "homepage": "https://verbs.lingdocs.com",

View File

@ -18,9 +18,9 @@ function humanReadableVerbTense(tense: T.VerbTense): string {
? "simple past" ? "simple past"
: tense === "imperfectivePast" : tense === "imperfectivePast"
? "continuous past" ? "continuous past"
: tense === "habitualImperfectivePast" : tense === "habitualPerfectivePast"
? "habitual simple past" ? "habitual simple past"
// : tense === "habitualPerfectivePast" // : tense === "habitualImperfectivePast"
: "habitual continuous past"; : "habitual continuous past";
} }