From 2f3ba849ef45c2428ed08758b938b70aafcfcfc6 Mon Sep 17 00:00:00 2001 From: Joshua Horton Date: Thu, 7 Jul 2022 08:39:28 +0700 Subject: [PATCH] chore(web): applies code suggestion Co-authored-by: Marc Durdin --- common/core/web/keyboard-processor/src/text/kbdInterface.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/core/web/keyboard-processor/src/text/kbdInterface.ts b/common/core/web/keyboard-processor/src/text/kbdInterface.ts index 5bb27e1841..497565914b 100644 --- a/common/core/web/keyboard-processor/src/text/kbdInterface.ts +++ b/common/core/web/keyboard-processor/src/text/kbdInterface.ts @@ -882,7 +882,7 @@ namespace com.keyman.text { */ setStore(systemId: number, strValue: string, outputTarget: OutputTarget): boolean { this.resetContextCache(); - // Unique case: we only allow set-store ops from keyboard rules triggered by touch OSKs. + // Unique case: we only allow set(&layer) ops from keyboard rules triggered by touch OSKs. if(systemId == KeyboardInterface.TSS_LAYER && this.activeDevice.touchable) { // Denote the changed store as part of the matched rule's behavior. this.ruleBehavior.setStore[systemId] = strValue;