Skip to content

Commit

Permalink
Updated README content
Browse files Browse the repository at this point in the history
  • Loading branch information
Yurii Samsoniuk authored Feb 13, 2017
1 parent b68b3b9 commit 0155784
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Binary Tree/README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,7 @@ extension BinaryTree: CustomStringConvertible {
public var description: String {
switch self {
case let .node(left, value, right):
return "value: \(value), left = [" + left.description + "], right = ["
+ right.description + "]"
return "value: \(value), left = [\(left.description)], right = [\(right.description)]"
case .empty:
return ""
}
Expand Down

0 comments on commit 0155784

Please sign in to comment.