Skip to content

Commit b621f1e

Browse files
authored
Merge pull request kodecocodes#326 from StefanCimander/patch-1
Fix typo in ReadMe
2 parents 6086afa + 0ffeb21 commit b621f1e

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)