From b04187687f40d6d2785bccec1e978b05bef79956 Mon Sep 17 00:00:00 2001 From: Yuki Okushi Date: Thu, 26 May 2022 08:29:58 +0900 Subject: [PATCH] docs(idtoken): fix a typo on NewClient method (#1558) --- 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) {