Skip to content

Commit f5c228e

Browse files
authored
[chore] Spelling: the..typescript (#6037)
Signed-off-by: Josh Soref <[email protected]>
1 parent b520443 commit f5c228e

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

content/en/blog/2024/otel-operator-q-and-a/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,8 @@ along with the
130130
131131
For every Collector release, there is an Operator release which provides support
132132
for that Collector version. For example, at the time of this writing, the latest
133-
Operator version is 0.98.0. Thus, the the default image of the Collector used by
134-
the Operator is version 0.98.0 of the
133+
Operator version is 0.98.0. Thus, the default image of the Collector used by the
134+
Operator is version 0.98.0 of the
135135
[core distribution](/blog/2024/otel-collector-anti-patterns/#3--not-using-the-right-collector-distribution-or-not-building-your-own-distribution)
136136
(as opposed to the contrib distribution).
137137

content/en/blog/2024/prom-and-otel/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ Let’s dig into each of these.
220220
The Target Allocator’s first job is to discover targets to scrape and OTel
221221
Collectors to allocate targets to. It does so as follows:
222222

223-
1. The Target Allocator finds all of the the metrics targets to scrape
223+
1. The Target Allocator finds all of the metrics targets to scrape
224224
2. The Target Allocator finds all of the available Collectors
225225
3. The Target Allocator determines which Collectors scrape which metrics
226226
4. The Collectors query the Target Allocator to find out what metrics to scrape

content/en/docs/concepts/components.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ For more information, see [K8s Operator](/docs/kubernetes/operator/).
133133
OpenTelemetry supports various methods of monitoring Function-as-a-Service
134134
provided by different cloud vendors. The OpenTelemetry community currently
135135
provides pre-built Lambda layers able to auto-instrument your application as
136-
well as a the option of standalone Collector Lambda layer that can be used when
136+
well as the option of a standalone Collector Lambda layer that can be used when
137137
instrumenting applications manually or automatically.
138138

139139
For more information, see [Functions as a Service](/docs/faas/).

content/en/docs/faas/_index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ also known as Lambda.
1919
### Community Assets
2020

2121
The OpenTelemetry community currently provides pre-built Lambda layers able to
22-
auto-instrument your application as well as a the option of standalone Collector
22+
auto-instrument your application as well as the option of a standalone Collector
2323
Lambda layer that can be used when instrumenting applications manually or
2424
automatically.
2525

content/en/docs/languages/js/exporters.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ JavaScript) from the
5151
[Getting Started](/docs/languages/js/getting-started/nodejs/) like the following
5252
to export traces and metrics via OTLP (`http/protobuf`) :
5353

54-
{{< tabpane text=true >}} {{% tab Typescript %}}
54+
{{< tabpane text=true >}} {{% tab TypeScript %}}
5555

5656
```ts
5757
/*instrumentation.ts*/
@@ -256,7 +256,7 @@ npm install --save @opentelemetry/exporter-prometheus
256256
Update your OpenTelemetry configuration to use the exporter and to send data to
257257
your Prometheus backend:
258258

259-
{{< tabpane text=true >}} {{% tab Typescript %}}
259+
{{< tabpane text=true >}} {{% tab TypeScript %}}
260260

261261
```ts
262262
import * as opentelemetry from '@opentelemetry/sdk-node';
@@ -314,7 +314,7 @@ npm install --save @opentelemetry/exporter-zipkin
314314
Update your OpenTelemetry configuration to use the exporter and to send data to
315315
your Zipkin backend:
316316

317-
{{< tabpane text=true >}} {{% tab Typescript %}}
317+
{{< tabpane text=true >}} {{% tab TypeScript %}}
318318

319319
```ts
320320
import * as opentelemetry from '@opentelemetry/sdk-node';
@@ -347,7 +347,7 @@ const sdk = new opentelemetry.NodeSDK({
347347

348348
{{% docs/languages/exporters/outro js "https://open-telemetry.github.io/opentelemetry-js/interfaces/_opentelemetry_sdk_trace_base.SpanExporter.html" %}}
349349

350-
{{< tabpane text=true >}} {{% tab Typescript %}}
350+
{{< tabpane text=true >}} {{% tab TypeScript %}}
351351

352352
```ts
353353
/*instrumentation.ts*/

scripts/registry-scanner/index.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ async function createFilesFromScanResult(existing, found, settings) {
281281
current.html_url,
282282
parsedReadme.description,
283283
);
284-
// collector entries are named reverse (collector-{registryTpe}) compared to languages ({registryTpe}-{language}), we fix this here.
284+
// collector entries are named reverse (collector-{registryType}) compared to languages ({registryType}-{language}), we fix this here.
285285
const fileName = (
286286
language === 'collector'
287287
? `${language}-${registryType}-${currentKey}.yml`

0 commit comments

Comments
 (0)