From 2c1cc4db1a666581cec738e7d5540ebb5ef802b1 Mon Sep 17 00:00:00 2001 From: Antoine Toulme Date: Fri, 9 Feb 2024 02:34:46 -0800 Subject: [PATCH] [chore] fix typo in comment (#9539) --- extension/auth/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extension/auth/client.go b/extension/auth/client.go index cf1bdb55fb8..d1855d8aece 100644 --- a/extension/auth/client.go +++ b/extension/auth/client.go @@ -25,7 +25,7 @@ type Client interface { PerRPCCredentials() (credentials.PerRPCCredentials, error) } -// ClientOption represents the possible options for NewServerAuthenticator. +// ClientOption represents the possible options for NewClient. type ClientOption func(*defaultClient) // ClientRoundTripperFunc specifies the function that returns a RoundTripper that can be used to authenticate HTTP requests.