From 62b1e2c499e7b5d2a404338602a272cef9b698ca Mon Sep 17 00:00:00 2001 From: Will Charczuk Date: Sun, 5 Mar 2017 16:53:21 -0800 Subject: [PATCH] should not use unkeyed fields anyway. --- box.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/box.go b/box.go index aff0989..291b429 100644 --- a/box.go +++ b/box.go @@ -23,11 +23,11 @@ func NewBox(top, left, right, bottom int) Box { // Box represents the main 4 dimensions of a box. type Box struct { - IsSet bool Top int Left int Right int Bottom int + IsSet bool } // IsZero returns if the box is set or not.