InputState // Nomenclature fix.

This commit is contained in:
ShikiSuen 2022-07-31 16:00:26 +08:00
parent 37e408a1b5
commit 785b67cc5b
1 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@ enum StateType {
case ofNotEmpty case ofNotEmpty
case ofInputting case ofInputting
case ofMarking case ofMarking
case ofChooseCandidate case ofChoosingCandidate
case ofSymbolTable case ofSymbolTable
} }
@ -413,7 +413,7 @@ enum InputState {
/// .ChoosingCandidate: 使 /// .ChoosingCandidate: 使
class ChoosingCandidate: NotEmpty { class ChoosingCandidate: NotEmpty {
override public var type: StateType { .ofChooseCandidate } override public var type: StateType { .ofChoosingCandidate }
private(set) var candidates: [(String, String)] private(set) var candidates: [(String, String)]
private(set) var isTypingVertical: Bool private(set) var isTypingVertical: Bool