diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-03-25 21:40:27 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-25 21:40:27 -0400 |
commit | 4ddd3ec80cc0682a46c2d3fed137a5fa7657c5b0 (patch) | |
tree | ed3fafd7630396118d576c54c69afa98b3656b07 /docs/interfaces/dictionary-entry.ts | |
parent | 6af0ee26b943d87e25b5d7ff9b8cade6999b3660 (diff) |
Fix incorrect sorting (#1557)
* Sort by the maximum length of transformedText instead of deinflectedText
* Update docs
* Update tests
Diffstat (limited to 'docs/interfaces/dictionary-entry.ts')
-rw-r--r-- | docs/interfaces/dictionary-entry.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/interfaces/dictionary-entry.ts b/docs/interfaces/dictionary-entry.ts index 6aaafbf8..0b64908b 100644 --- a/docs/interfaces/dictionary-entry.ts +++ b/docs/interfaces/dictionary-entry.ts @@ -225,9 +225,9 @@ namespace Translation { */ sourceTermExactMatchCount: number; /** - * The maximum deinflected text length of a primary source. + * The maximum length of the transformed text for all primary sources. */ - maxDeinflectedTextLength: number; + maxTransformedTextLength: number; /** * Headwords for the entry. */ |