Skip to content

Commit

Permalink
Fix minor capitalization issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
Syfaro authored Mar 11, 2021
1 parent 284b093 commit 47a0a16
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}
}

Expand Down

0 comments on commit 47a0a16

Please sign in to comment.