From 47a0a16eb32eb8a57ab89c80a8a35b14e24bd13c Mon Sep 17 00:00:00 2001 From: Syfaro Date: Wed, 10 Mar 2021 22:07:51 -0500 Subject: [PATCH] Fix minor capitalization issue. --- helpers.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helpers.go b/helpers.go index 5167d86..7e22b67 100644 --- a/helpers.go +++ b/helpers.go @@ -675,10 +675,10 @@ func NewInlineKeyboardButtonData(text, data string) InlineKeyboardButton { // NewInlineKeyboardButtonLoginURL creates an inline keyboard button with text // which goes to a LoginURL. -func NewInlineKeyboardButtonLoginURL(text string, loginUrl LoginURL) InlineKeyboardButton { +func NewInlineKeyboardButtonLoginURL(text string, loginURL LoginURL) InlineKeyboardButton { return InlineKeyboardButton{ Text: text, - LoginURL: &loginUrl, + LoginURL: &loginURL, } }