Skip to content

Commit ed7fe62

Browse files
author
Syfaro
committed
Fix incorrect float32.
1 parent e8e55fe commit ed7fe62

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

types.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -251,8 +251,8 @@ type Contact struct {
251251

252252
// Location contains information about a place.
253253
type Location struct {
254-
Longitude float32 `json:"longitude"`
255-
Latitude float32 `json:"latitude"`
254+
Longitude float64 `json:"longitude"`
255+
Latitude float64 `json:"latitude"`
256256
}
257257

258258
// Venue contains information about a venue, including its Location.

0 commit comments

Comments
 (0)