diff options
author | Cashew <52880648+Scrub1492@users.noreply.github.com> | 2023-12-19 14:22:22 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-19 05:22:22 +0000 |
commit | 5f96276fda93dcad39f2165fd3c8d890aa5f9be5 (patch) | |
tree | 1437c9298afa0ecd41414446043fe799026e8c79 /ext/js/language/deinflector.js | |
parent | 7b93055f2e3d79729195fbd515cdccbf538c9376 (diff) |
update JSDoc comments (#387)
* lesen-tan initial commit
* update README.md
* tidy up code
* opt for Map<K, V> instead of Object
* Document dev/*
* add docs for deinflector.js
* update deinflector example
* Annotate
* Revert "Merge branch 'development' of https://github.com/Scrub1492/lesen-tan into development"
This reverts commit b92348f702bc031b36f24462adfa940d17f9ecdd, reversing
changes made to 3255e6d963281af3533dcf1e893df39032d29fec.
* Lint error fix
* Lint error fix
* update JSDoc comments
---------
Co-authored-by: Darius Jahandarie <djahandarie@gmail.com>
Diffstat (limited to 'ext/js/language/deinflector.js')
-rw-r--r-- | ext/js/language/deinflector.js | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/ext/js/language/deinflector.js b/ext/js/language/deinflector.js index 90ca79ea..676f45a1 100644 --- a/ext/js/language/deinflector.js +++ b/ext/js/language/deinflector.js @@ -16,16 +16,13 @@ * along with this program. If not, see <https://www.gnu.org/licenses/>. */ -/** - * This class deinflects Japanese terms to its dictionary form. - */ export class Deinflector { /** * @param {import('deinflector').ReasonsRaw} reasons * @example * const deinflectionReasons = JSON.parse( * readFileSync(path.join('ext/data/deinflect.json')).toString(), - * ) as object; + * ); * const deinflector = new Deinflector(deinflectionReasons); */ constructor(reasons) { @@ -101,7 +98,6 @@ export class Deinflector { } /** - * Given a list of rules, return the corresponding deinflection rule flags. * @param {string[]} rules * @returns {import('translation-internal').DeinflectionRuleFlags} */ |