Skip to content

Commit 0ffeb21

Browse files
authored
Fix typo in ReadMe
1 parent 6086afa commit 0ffeb21

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Trie/ReadMe.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ func contains(word: String) -> Bool {
3636

3737
// 3
3838
while currentIndex < characters.count,
39-
let child = currentNode.children[character[currentIndex]] {
39+
let child = currentNode.children[characters[currentIndex]] {
4040

4141
currentNode = child
4242
currentIndex += 1

0 commit comments

Comments
 (0)