oops humanReadableVerbTense was wrong
This commit is contained in:
parent
70de3344a7
commit
c408737901
|
@ -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",
|
||||||
|
|
|
@ -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";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue