Fixing typos (#70487)

This commit is contained in:
Andreas Deininger
2023-06-22 10:43:38 +02:00
committed by GitHub
parent 1441c90178
commit 95b1f3c875
25 changed files with 36 additions and 36 deletions

View File

@ -110,7 +110,7 @@ func TestTracingConfig(t *testing.T) {
ExpectedAttrs: []attribute.KeyValue{},
},
{
Name: "legacy env variables are supproted",
Name: "legacy env variables are supported",
Cfg: `[tracing.jaeger]`,
Env: map[string]string{
"JAEGER_AGENT_HOST": "example.com",
@ -137,7 +137,7 @@ func TestTracingConfig(t *testing.T) {
},
} {
t.Run(test.Name, func(t *testing.T) {
// export envioronment variables
// export environment variables
if test.Env != nil {
for k, v := range test.Env {
t.Setenv(k, v)