Skip to content

Commit

Permalink
Fix typo in ReadMe
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan-lipp committed Dec 21, 2016
1 parent 6086afa commit 0ffeb21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Trie/ReadMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ func contains(word: String) -> Bool {

// 3
while currentIndex < characters.count,
let child = currentNode.children[character[currentIndex]] {
let child = currentNode.children[characters[currentIndex]] {

currentNode = child
currentIndex += 1
Expand Down

0 comments on commit 0ffeb21

Please sign in to comment.