From 17e511dea2b0e352d731c87222661508ecaa3d26 Mon Sep 17 00:00:00 2001 From: stephen mcquay Date: Wed, 23 Apr 2014 14:56:23 -0700 Subject: [PATCH] fixed go vet errors --- geometry.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/geometry.go b/geometry.go index 393f0e8..92ad60d 100644 --- a/geometry.go +++ b/geometry.go @@ -6,8 +6,8 @@ import ( // A and B represent two opposite corners of axis-aligned boundin box type AABB2d struct { - A Point2d `json:A` - B Point2d `json:B` + A Point2d `json:"A"` + B Point2d `json:"B"` } type Polygon2d struct {