xds: fix a typo (#4631)

This commit is contained in:
Easwar Swaminathan 2021-07-29 17:23:32 -07:00 committed by GitHub
parent ad0a2a847c
commit ea9b7a0a76
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -50,13 +50,13 @@ const (
var ( var (
// BootstrapFileName holds the name of the file which contains xDS bootstrap // BootstrapFileName holds the name of the file which contains xDS bootstrap
// configuration. Users can specify the location of the bootstrap file by // configuration. Users can specify the location of the bootstrap file by
// setting the environment variable "GRPC_XDS_BOOSTRAP". // setting the environment variable "GRPC_XDS_BOOTSTRAP".
// //
// When both bootstrap FileName and FileContent are set, FileName is used. // When both bootstrap FileName and FileContent are set, FileName is used.
BootstrapFileName = os.Getenv(BootstrapFileNameEnv) BootstrapFileName = os.Getenv(BootstrapFileNameEnv)
// BootstrapFileContent holds the content of the xDS bootstrap // BootstrapFileContent holds the content of the xDS bootstrap
// configuration. Users can specify the bootstrap config by // configuration. Users can specify the bootstrap config by
// setting the environment variable "GRPC_XDS_BOOSTRAP_CONFIG". // setting the environment variable "GRPC_XDS_BOOTSTRAP_CONFIG".
// //
// When both bootstrap FileName and FileContent are set, FileName is used. // When both bootstrap FileName and FileContent are set, FileName is used.
BootstrapFileContent = os.Getenv(BootstrapFileContentEnv) BootstrapFileContent = os.Getenv(BootstrapFileContentEnv)