8000 Merge pull request #1 from darrellhz/update-to-swift-3.0-syntax · matsoftware/swift-algorithm-club@a221979 · GitHub
[go: up one dir, main page]

Skip to content

Commit a221979

Browse files
authored
Merge pull request kodecocodes#1 from darrellhz/update-to-swift-3.0-syntax
Update README.markdown
2 parents 506d1fd + 6d4a1ee commit a221979

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Binary Search Tree/README.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ For convenience, let's add an init method that calls `insert()` for all the elem
195195
precondition(array.count > 0)
196196
self.init(value: array.first!)
197197
for v in array.dropFirst() {
198-
insert(v, parent: self)
198+
insert(value: v)
199199
}
200200
}
201201
```

0 commit comments

Comments
 (0)
0