Fix minor capitalization issue.
Syfaro syfaro@huefox.com
Wed, 10 Mar 2021 22:07:51 -0500
1 files changed,
2 insertions(+),
2 deletions(-)
jump to
M
helpers.go
→
helpers.go
@@ -675,10 +675,10 @@ }
// 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, } }