Skip to content

Commit

Permalink
Fix oen -> one typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Aleksandr Chebotov committed Aug 6, 2021
1 parent e8074e1 commit ca2e008
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion azblob/zc_credential_token.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ type TokenCredential interface {
// TokenCredential's token value by calling SetToken. Your tokenRefresher function must return a time.Duration
// indicating how long the TokenCredential object should wait before calling your tokenRefresher function again.
// If your tokenRefresher callback fails to refresh the token, you can return a duration of 0 to stop your
// TokenCredential object from ever invoking tokenRefresher again. Also, oen way to deal with failing to refresh a
// TokenCredential object from ever invoking tokenRefresher again. Also, one way to deal with failing to refresh a
// token is to cancel a context.Context object used by requests that have the TokenCredential object in their pipeline.
func NewTokenCredential(initialToken string, tokenRefresher TokenRefresher) TokenCredential {
tc := &tokenCredential{}
Expand Down

0 comments on commit ca2e008

Please sign in to comment.