all repos — telegram-bot-api @ ed7fe62451e478622d838f79bbd06a91c99cd797

Golang bindings for the Telegram Bot API

Fix incorrect float32.
Syfaro syfaro@foxpaw.in
Thu, 14 Apr 2016 13:28:38 -0500
commit

ed7fe62451e478622d838f79bbd06a91c99cd797

parent

e8e55fe41afff8dddf382ee20b4d9d7aadf66266

1 files changed, 2 insertions(+), 2 deletions(-)

jump to
M types.gotypes.go

@@ -251,8 +251,8 @@ }

// 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.