From 2b64a0857bc5a4939895754d07367d5b29fefde3 Mon Sep 17 00:00:00 2001 From: Joshua Horton Date: Wed, 24 Sep 2025 10:37:12 -0500 Subject: [PATCH] docs(web): fix sourceText doc comment --- .../worker-thread/src/main/correction/context-token.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/web/src/engine/predictive-text/worker-thread/src/main/correction/context-token.ts b/web/src/engine/predictive-text/worker-thread/src/main/correction/context-token.ts index c87c706fd3..23f438ca17 100644 --- a/web/src/engine/predictive-text/worker-thread/src/main/correction/context-token.ts +++ b/web/src/engine/predictive-text/worker-thread/src/main/correction/context-token.ts @@ -136,10 +136,7 @@ export class ContextToken { } /** - * Gets a simple, human-readable representation of `inputRange`. - * - * Should not actually be used in code - its use is intended only for - * debugging. + * Gets a simple, compact string-based representation of `inputRange`. */ get sourceText(): string { const composite = this._inputRange.reduce((accum, current) => buildMergedTransform(accum, current), { insert: '', deleteLeft: 0 });