From 785b67cc5b49c6ff312a5b0b021ed4b87998264c Mon Sep 17 00:00:00 2001 From: ShikiSuen Date: Sun, 31 Jul 2022 16:00:26 +0800 Subject: [PATCH] InputState // Nomenclature fix. --- Source/Modules/ControllerModules/InputState.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Modules/ControllerModules/InputState.swift b/Source/Modules/ControllerModules/InputState.swift index 4059a042..795e5e0f 100644 --- a/Source/Modules/ControllerModules/InputState.swift +++ b/Source/Modules/ControllerModules/InputState.swift @@ -38,7 +38,7 @@ enum StateType { case ofNotEmpty case ofInputting case ofMarking - case ofChooseCandidate + case ofChoosingCandidate case ofSymbolTable } @@ -413,7 +413,7 @@ enum InputState { /// .ChoosingCandidate: 叫出選字窗、允許使用者選字。 class ChoosingCandidate: NotEmpty { - override public var type: StateType { .ofChooseCandidate } + override public var type: StateType { .ofChoosingCandidate } private(set) var candidates: [(String, String)] private(set) var isTypingVertical: Bool