From 90a1c53832049040fc4c8aaea4a06eaf3dc7fa69 Mon Sep 17 00:00:00 2001 From: Yuki Okushi Date: Wed, 25 May 2022 16:40:03 +0900 Subject: [PATCH] idtoken: fix a typo on `NewClient` method --- idtoken/idtoken.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/idtoken/idtoken.go b/idtoken/idtoken.go index be2ba5cd429..490b3ba7312 100644 --- a/idtoken/idtoken.go +++ b/idtoken/idtoken.go @@ -26,7 +26,7 @@ import ( type ClientOption = option.ClientOption // NewClient creates a HTTP Client that automatically adds an ID token to each -// request via an Authorization header. The token will have have the audience +// request via an Authorization header. The token will have the audience // provided and be configured with the supplied options. The parameter audience // may not be empty. func NewClient(ctx context.Context, audience string, opts ...ClientOption) (*http.Client, error) {