Skip to content

Commit

Permalink
Merge pull request #326 from StefanCimander/patch-1
Browse files Browse the repository at this point in the history
Fix typo in ReadMe
  • Loading branch information
kelvinlauKL authored Dec 22, 2016
2 parents 6086afa + 0ffeb21 commit b621f1e
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 b621f1e

Please sign in to comment.