Skip to content

Commit

Permalink
Change biggercased pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
Tatsumi0000 committed Apr 12, 2024
1 parent 889590c commit 3f2c985
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ final public class WordListFileUseCase: WordListFileUseCaseType {
}

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

0 comments on commit 3f2c985

Please sign in to comment.