diff options
-rw-r--r-- | structs_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/structs_test.go b/structs_test.go index 0989753..30ac7cf 100644 --- a/structs_test.go +++ b/structs_test.go @@ -280,7 +280,7 @@ func ExampleNewBoundingBox() { // Using the InsideOf() method, it can be determined if a point is inside of a bounding box // or not. The Example below can be used as a reference: -func ExampleInsideOf_Coord() { +func ExampleInsideOf() { var point = NewCoord(0, 0) var bounadry = NewBoundingBox(NewCoord(0, 0), 10) var quadtreeCell = NewQuadtree(bounadry, 0) |