From 249335ff6437de4d4d711bc01c51cf4f766b1cdc Mon Sep 17 00:00:00 2001 From: hanemile Date: Tue, 6 Nov 2018 16:16:36 +0100 Subject: Renamed the InsideOf Example function --- structs_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit 1.4.1