Fix extra space (#2354)

Co-authored-by: Cijo Thomas <cithomas@microsoft.com>
This commit is contained in:
Reiley Yang 2021-09-15 12:44:04 -07:00 committed by GitHub
parent 5deeb07080
commit 7b170c0a49
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -137,7 +137,7 @@ using var tracerProvider = Sdk.CreateTracerProviderBuilder()
// named "MyCompany.MyProduct.MyLibrary" only.
.AddSource("MyCompany.MyProduct.MyLibrary")
// The following subscribes to activities from all Activity Sources
// whose name starts with "ABCCompany.XYZProduct.".
// whose name starts with "ABCCompany.XYZProduct.".
.AddSource("ABCCompany.XYZProduct.*")
.Build();
```