Skip to content

Commit 3f2c985

Browse files
committed
Change biggercased pattern
1 parent 889590c commit 3f2c985

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

RaelizeLogic/Sources/RaelizeLogic/UseCase/WordListFileUseCase.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ final public class WordListFileUseCase: WordListFileUseCaseType {
4040
}
4141

4242
public func searchWordList(word: String) -> AnyPublisher<[String]?, Never> {
43+
let word = word.lowercased()
4344
return self.provider.wordListFileRepository.getWordList()
4445
.compactMap({
4546
if $0 == nil { return nil }

0 commit comments

Comments
 (0)