From c408737901da23b9290e0572b1e3ebe1a3e743c6 Mon Sep 17 00:00:00 2001 From: lingdocs <71590811+lingdocs@users.noreply.github.com> Date: Fri, 9 Sep 2022 17:47:45 +0400 Subject: [PATCH] oops humanReadableVerbTense was wrong --- package.json | 2 +- src/lib/human-readable.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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"; }