diff options
author | StefanVukovic99 <stefanvukovic44@gmail.com> | 2024-04-15 19:47:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-15 17:47:14 +0000 |
commit | afd6e172669cdd148f53c1776ec449f4b1926ace (patch) | |
tree | 41dfc9138540e15fb352f264dbf980be42f01f58 /types | |
parent | f5a6b25e8d3331fce1cc5145bb7b21f2081743fe (diff) |
improve term sorting (#806)24.4.15.0
* improve term sorting
* edge case
Diffstat (limited to 'types')
-rw-r--r-- | types/ext/dictionary.d.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/types/ext/dictionary.d.ts b/types/ext/dictionary.d.ts index ca6a708a..cc53ec0a 100644 --- a/types/ext/dictionary.d.ts +++ b/types/ext/dictionary.d.ts @@ -232,9 +232,9 @@ export type TermDictionaryEntry = { */ sourceTermExactMatchCount: number; /** - * The maximum length of the transformed text for all primary sources. + * The maximum length of the original text for all primary sources. */ - maxTransformedTextLength: number; + maxOriginalTextLength: number; /** * Headwords for the entry. */ |