Skip to content

Commit

Permalink
xds: fix a typo (#4631)
Browse files Browse the repository at this point in the history
  • Loading branch information
easwars committed Jul 30, 2021
1 parent ad0a2a8 commit ea9b7a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/xds/env/env.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,13 @@ const (
var (
// BootstrapFileName holds the name of the file which contains xDS bootstrap
// 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.
BootstrapFileName = os.Getenv(BootstrapFileNameEnv)
// BootstrapFileContent holds the content of the xDS bootstrap
// 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.
BootstrapFileContent = os.Getenv(BootstrapFileContentEnv)
Expand Down

0 comments on commit ea9b7a0

Please sign in to comment.