Skip to content

Commit b941f1e

Browse files
authored
[docs] Typo fixes (double the) (open-telemetry#5852)
1 parent cd01f93 commit b941f1e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/metrics/customizing-the-sdk/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ used.
203203
By default, the boundaries used for a Histogram are [`{ 0, 5, 10, 25, 50, 75,
204204
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).
205205
Views can be used to provide custom boundaries for a Histogram. The measurements
206-
are then aggregated using the custom boundaries provided instead of the the
206+
are then aggregated using the custom boundaries provided instead of the
207207
default boundaries. This requires the use of
208208
`ExplicitBucketHistogramConfiguration`.
209209

src/OpenTelemetry.Exporter.OpenTelemetryProtocol/IOtlpExporterOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace OpenTelemetry.Exporter;
1414
internal interface IOtlpExporterOptions
1515
{
1616
/// <summary>
17-
/// Gets or sets the the OTLP transport protocol.
17+
/// Gets or sets the OTLP transport protocol.
1818
/// </summary>
1919
OtlpExportProtocol Protocol { get; set; }
2020

src/OpenTelemetry.Exporter.Zipkin/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ dotnet add package OpenTelemetry.Exporter.Zipkin
1515

1616
## Enable/Add Zipkin as a tracing exporter
1717

18-
You can enable the the `ZipkinExporter` with the `AddZipkinExporter()` extension
18+
You can enable the `ZipkinExporter` with the `AddZipkinExporter()` extension
1919
method on `TracerProviderBuilder`.
2020

2121
## Configuration

0 commit comments

Comments
 (0)