From 450eec215649e260eef38c3465dc53a0e4ec9131 Mon Sep 17 00:00:00 2001 From: ShikiSuen Date: Sun, 19 Jun 2022 13:32:14 +0800 Subject: [PATCH] =?UTF-8?q?Repo=20//=20=E5=87=BD=E6=95=B8->=E5=87=BD?= =?UTF-8?q?=E5=BC=8F=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Source/Modules/ControllerModules/KeyHandler_HandleInput.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Modules/ControllerModules/KeyHandler_HandleInput.swift b/Source/Modules/ControllerModules/KeyHandler_HandleInput.swift index 87c21d05..00c916fb 100644 --- a/Source/Modules/ControllerModules/KeyHandler_HandleInput.swift +++ b/Source/Modules/ControllerModules/KeyHandler_HandleInput.swift @@ -83,8 +83,8 @@ extension KeyHandler { /// 如果是 ASCII 當中的不可列印的字元的話,不使用「insertText:replacementRange:」。 /// 某些應用無法正常處理非 ASCII 字符的輸入。 - /// 注意:這裡一定要用 Objective-C 的 isPrintable() 函數來處理,否則無效。 - /// 這個函數已經包裝在 CTools.h 裡面了,這樣就可以拿給 Swift 用。 + /// 注意:這裡一定要用 Objective-C 的 isPrintable() 函式來處理,否則無效。 + /// 這個函式已經包裝在 CTools.h 裡面了,這樣就可以拿給 Swift 用。 if charCode < 0x80, !CTools.isPrintable(charCode) { return false }