Skip to content

Commit 47a0a16

Browse files
authored
Fix minor capitalization issue.
1 parent 284b093 commit 47a0a16

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

helpers.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -675,10 +675,10 @@ func NewInlineKeyboardButtonData(text, data string) InlineKeyboardButton {
675675

676676
// NewInlineKeyboardButtonLoginURL creates an inline keyboard button with text
677677
// which goes to a LoginURL.
678-
func NewInlineKeyboardButtonLoginURL(text string, loginUrl LoginURL) InlineKeyboardButton {
678+
func NewInlineKeyboardButtonLoginURL(text string, loginURL LoginURL) InlineKeyboardButton {
679679
return InlineKeyboardButton{
680680
Text: text,
681-
LoginURL: &loginUrl,
681+
LoginURL: &loginURL,
682682
}
683683
}
684684

0 commit comments

Comments
 (0)