diff --git a/Source/Modules/LangModelRelated/SubLMs/lmAssociates.swift b/Source/Modules/LangModelRelated/SubLMs/lmAssociates.swift index e45554c6..2740e293 100644 --- a/Source/Modules/LangModelRelated/SubLMs/lmAssociates.swift +++ b/Source/Modules/LangModelRelated/SubLMs/lmAssociates.swift @@ -95,7 +95,7 @@ extension vChewing { if let arrRangeRecords: [Range] = rangeMap[key] { for netaRange in arrRangeRecords { let neta = strData[netaRange].split(separator: " ") - let theValue: String = String(neta[1]) + let theValue: String = .init(neta[1]) pairs.append(theValue) } }