Skip to content

Commit

Permalink
oauth2: remove extra period
Browse files Browse the repository at this point in the history
  • Loading branch information
darkfeline committed May 22, 2024
1 parent 5fd4241 commit ca611fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion token.go
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ func tokenFromInternal(t *internal.Token) *Token {

// retrieveToken takes a *Config and uses that to retrieve an *internal.Token.
// This token is then mapped from *internal.Token into an *oauth2.Token which is returned along
// with an error..
// with an error.
func retrieveToken(ctx context.Context, c *Config, v url.Values) (*Token, error) {
tk, err := internal.RetrieveToken(ctx, c.ClientID, c.ClientSecret, c.Endpoint.TokenURL, v, internal.AuthStyle(c.Endpoint.AuthStyle), c.authStyleCache.Get())
if err != nil {
Expand Down

0 comments on commit ca611fe

Please sign in to comment.