Adjust/fix wording (#1061)

* adjust/fix wording

* adjust wording
This commit is contained in:
Reiley Yang 2020-08-12 11:29:46 -07:00 committed by GitHub
parent 46bb490a94
commit 310f315099
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 9 deletions

View File

@ -12,13 +12,14 @@ The .NET [OpenTelemetry](https://opentelemetry.io/) client.
## Getting Started
If you are new here, please [get started in 5 minutes](./docs/trace/getting-started/README.md).
This repository includes multiple installable components, available on
[NuGet](https://www.nuget.org/profiles/OpenTelemetry).
If you are new here, please see [get started in 5
minutes](./docs/trace/getting-started/README.md).
Each package has its individual `README.md` file, which covers the instruction
on how to install and how to get started. To find all the available components,
please take a look at the `src` folder.
This repository includes multiple installable components, available on
[NuGet](https://www.nuget.org/profiles/OpenTelemetry). Each component has its
individual `README.md` file, which covers the instruction on how to install and
how to get started. To find all the available components, please take a look at
the `src` folder.
Here are the most commonly used components:

View File

@ -47,13 +47,13 @@ Congratulations! You are now collecting traces using OpenTelemetry.
What does the above program do?
The program creates an `ActivitySource` which represents [OpenTelemetry
The program creates an `ActivitySource` which represents an [OpenTelemetry
Tracer](https://github.com/open-telemetry/opentelemetry-specification/blob/master/specification/trace/api.md#tracer).
The activitysource instance is used to start an `Activity` which represent
The `ActivitySource` instance is used to start an `Activity` which represents an
[OpenTelemetry
Span](https://github.com/open-telemetry/opentelemetry-specification/blob/master/specification/trace/api.md#span).
An OpenTelemetry
[TracerProvider](https://github.com/open-telemetry/opentelemetry-specification/blob/master/specification/trace/api.md#tracerprovider)
configured to subscribe to the activities from the source
is configured to subscribe to the activities from the source
`MyCompany.MyProduct.MyLibrary`, and export it to `ConsoleExporter`.
`ConsoleExporter` simply displays it on the console.