File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
QuadTree/QuadTree.playground/Sources Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ extension Rect: CustomStringConvertible {
104
104
}
105
105
}
106
106
107
- protocol PointsContainter {
107
+ protocol PointsContainer {
108
108
func add( point: Point ) -> Bool
109
109
func points( inRect rect: Rect ) -> [ Point ]
110
110
}
@@ -185,7 +185,7 @@ class QuadTreeNode {
185
185
}
186
186
}
187
187
188
- extension QuadTreeNode : PointsContainter {
188
+ extension QuadTreeNode : PointsContainer {
189
189
190
190
@discardableResult
191
191
func add( point: Point ) -> Bool {
@@ -265,7 +265,7 @@ extension QuadTreeNode: CustomStringConvertible {
265
265
}
266
266
}
267
267
268
- public class QuadTree : PointsContainter {
268
+ public class QuadTree : PointsContainer {
269
269
270
270
let root : QuadTreeNode
271
271
You can’t perform that action at this time.
0 commit comments