1
0
mirror of https://github.com/open-telemetry/opentelemetry-go.git synced 2026-06-03 18:35:08 +02:00

Typo in getting-started.md (#3931)

Co-authored-by: Tyler Yahn <MrAlias@users.noreply.github.com>
This commit is contained in:
TotomiEcio
2023-03-24 13:32:31 -03:00
committed by GitHub
parent b73a33c487
commit 42594a1bd0
+1 -1
View File
@@ -190,7 +190,7 @@ With the imports added, you can start instrumenting.
The OpenTelemetry Tracing API provides a [`Tracer`] to create traces. These
[`Tracer`]s are designed to be associated with one instrumentation library. That
way telemetry they produce can be understood to come from that part of a code
base. To uniquely identify your application to the [`Tracer`] you will use
base. To uniquely identify your application to the [`Tracer`] you will
create a constant with the package name in `app.go`.
```go