Fix incorrect float32.

bot-api-6.1
Syfaro 2016-04-14 13:28:38 -05:00
parent e8e55fe41a
commit ed7fe62451
1 changed files with 2 additions and 2 deletions

View File

@ -251,8 +251,8 @@ type Contact struct {
// Location contains information about a place.
type Location struct {
Longitude float32 `json:"longitude"`
Latitude float32 `json:"latitude"`
Longitude float64 `json:"longitude"`
Latitude float64 `json:"latitude"`
}
// Venue contains information about a venue, including its Location.