Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ad5d7b5

Browse files
authoredMay 1, 2017
Merge pull request kodecocodes#454 from jawwad/patch-2
Fix misindented return statement
2 parents 6dc78d6 + 32457ce commit ad5d7b5

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
@@ -46,7 +46,7 @@ func contains(word: String) -> Bool {
4646
if currentIndex == characters.count && currentNode.isTerminating {
4747
return true
4848
} else {
49-
return false
49+
return false
5050
}
5151
}
5252
```

0 commit comments

Comments
 (0)
Please sign in to comment.