Skip to content

Commit 578cfdc

Browse files
committed
Merge branch 'change/web/remove-duplicate-path-filtering' into fix/web/prevent-insdel-sub-aliasing
2 parents 39487e0 + 0bc1f96 commit 578cfdc

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

web/src/engine/predictive-text/worker-thread/src/main/correction/distance-modeler.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -480,8 +480,9 @@ export class SearchNode {
480480
* represented lexicon prefix - be it due to not adding one (deletions) or
481481
* due to not being the same character, all mismatching cases are merged into
482482
* one, reducing the rate of expansion for the search graph.
483-
* @param input
483+
* @param dist
484484
* @param isSubstitution
485+
* @param edgeId
485486
* @returns
486487
*/
487488
private setupSubsetProcessing(dist: Distribution<Transform>, isSubstitution: boolean, edgeId: number) {

web/src/engine/predictive-text/worker-thread/src/main/correction/search-quotient-node.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
import { SearchNode, SearchResult } from "./distance-modeler.js";
1111

12-
export let SPACE_ID_SEED = 0;
12+
let SPACE_ID_SEED = 0;
1313

1414
export function generateSpaceSeed(): number {
1515
return SPACE_ID_SEED++;

web/src/test/auto/headless/engine/predictive-text/worker-thread/correction-search/getBestMatches.tests.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* Created by jahorton on 2025-10-09
55
*
6-
* This file defines tests for the SearchSpace class of the
6+
* This file defines tests for the correction-searching process of the
77
* predictive-text correction-search engine.
88
*/
99

0 commit comments

Comments
 (0)