From ea9b7a0a7651baaf43c5403cb83349fffb5162df Mon Sep 17 00:00:00 2001 From: Easwar Swaminathan Date: Thu, 29 Jul 2021 17:23:32 -0700 Subject: [PATCH] xds: fix a typo (#4631) --- internal/xds/env/env.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/xds/env/env.go b/internal/xds/env/env.go index e90c7ffc4..448fd63c2 100644 --- a/internal/xds/env/env.go +++ b/internal/xds/env/env.go @@ -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)