about summary refs log tree commit diff
diff options
context:
space:
mode:
authorhanemile <hanemile@protonmail.com>2018-11-06 16:16:36 +0100
committerhanemile <hanemile@protonmail.com>2018-11-06 16:16:36 +0100
commit249335ff6437de4d4d711bc01c51cf4f766b1cdc (patch)
treec8f97bf6fdf669d579358dc0ca39ee87e83bd8a9
parentceaa8056213ac425d4a808c4b5685d9d6abda81e (diff)
Renamed the InsideOf Example function
-rw-r--r--structs_test.go2
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)