all repos — telegram-bot-api @ b0c8029a0fd78a97095333c987bcba604051f522

Golang bindings for the Telegram Bot API

fix wrong capitalization of a function name
Syfaro syfaro@foxpaw.in
Tue, 28 Jul 2015 12:18:50 -0400
commit

b0c8029a0fd78a97095333c987bcba604051f522

parent

dc198e23462284f58d4c8432cbb91dae592bfd90

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

jump to
M bot.gobot.go

@@ -15,7 +15,7 @@

// NewBotAPI creates a new BotAPI instance. // Requires a token, provided by @BotFather on Telegram func NewBotAPI(token string) (*BotAPI, error) { - return NewBotAPIwithClient(token, &http.Client{}) + return NewBotAPIWithClient(token, &http.Client{}) } // NewBotAPIWithClient creates a new BotAPI instance passing an http.Client.