[docs] Typo fixes (double the) (#5852)

This commit is contained in:
Piotr Kiełkowicz 2024-09-20 18:09:52 +02:00 committed by GitHub
parent cd01f932a6
commit b941f1e4d6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -203,7 +203,7 @@ used.
By default, the boundaries used for a Histogram are [`{ 0, 5, 10, 25, 50, 75,
100, 250, 500, 750, 1000, 2500, 5000, 7500, 10000}`](https://github.com/open-telemetry/opentelemetry-specification/blob/v1.14.0/specification/metrics/sdk.md#explicit-bucket-histogram-aggregation).
Views can be used to provide custom boundaries for a Histogram. The measurements
are then aggregated using the custom boundaries provided instead of the the
are then aggregated using the custom boundaries provided instead of the
default boundaries. This requires the use of
`ExplicitBucketHistogramConfiguration`.

View File

@ -14,7 +14,7 @@ namespace OpenTelemetry.Exporter;
internal interface IOtlpExporterOptions
{
/// <summary>
/// Gets or sets the the OTLP transport protocol.
/// Gets or sets the OTLP transport protocol.
/// </summary>
OtlpExportProtocol Protocol { get; set; }

View File

@ -15,7 +15,7 @@ dotnet add package OpenTelemetry.Exporter.Zipkin
## Enable/Add Zipkin as a tracing exporter
You can enable the the `ZipkinExporter` with the `AddZipkinExporter()` extension
You can enable the `ZipkinExporter` with the `AddZipkinExporter()` extension
method on `TracerProviderBuilder`.
## Configuration