Skip to content

Commit 17c3b8e

Browse files
authored
[chore] Spelling a...container.id (#6014)
Signed-off-by: Josh Soref <[email protected]>
1 parent 7049bb0 commit 17c3b8e

File tree

10 files changed

+20
-20
lines changed

10 files changed

+20
-20
lines changed

.github/workflows/auto-update-community-members.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
auto-update-versions:
1111
name: Auto-update community members page
1212
runs-on: ubuntu-24.04
13-
# Remove the if statement below when testing againt a fork
13+
# Remove the if statement below when testing against a fork
1414
if: github.repository == 'open-telemetry/opentelemetry.io'
1515
steps:
1616
- name: Checkout

.github/workflows/auto-update-registry.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
auto-update-versions:
1111
name: Auto-update registry versions
1212
runs-on: ubuntu-20.04
13-
# Remove the if statement below when testing againt a fork
13+
# Remove the if statement below when testing against a fork
1414
if: github.repository == 'open-telemetry/opentelemetry.io'
1515
steps:
1616
- name: Checkout

content/en/blog/2023/histograms-vs-summaries/index.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Histograms vs Summaries
33
date: 2023-05-15
44
author: '[Daniel Dyla](https://github.com/dyladan)'
55
canonical_url: https://dyladan.me/histograms/2023/05/03/histograms-vs-summaries/
6-
cSpell:ignore: aggregatable Björn Ganesh Kovalov Rabenstein Ruslan Vernekar
6+
cSpell:ignore: aggregable Björn Ganesh Kovalov Rabenstein Ruslan Vernekar
77
---
88

99
In many ways, histograms and summaries appear quite similar. They both roll up
@@ -34,9 +34,9 @@ could be off by as much as 60ms (`360 - 300`), a relative error of 17%
3434
(`60 / 360`). This error can be mitigated by configuring more and smaller
3535
buckets around your SLO values, but never eliminated.
3636

37-
One important property of histograms is that they are _aggregatable_, meaning
38-
that as long as the bucket boundaries line up, an arbitrary number of histograms
39-
can be combined into a single histogram with no loss of data or precision. This
37+
One important property of histograms is that they are _aggregable_, meaning that
38+
as long as the bucket boundaries line up, an arbitrary number of histograms can
39+
be combined into a single histogram with no loss of data or precision. This
4040
means that an arbitrary number of hosts can report histogram data structures to
4141
a server, which can aggregate and compute quantiles from all of them as if they
4242
were reported by a single host. By collecting histograms from 1 or more hosts

content/en/blog/2024/prometheus-compatibility-survey/index.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -175,10 +175,10 @@ existing conventions.
175175

176176
For the most part, this feedback aligns with the future plans in the
177177
OpenTelemetry and Prometheus communities. The OpenTelemetry semantic conventions
178-
SIG is working on stabilizing conventions for a a wide variety of
179-
instrumentation. The OpenTelemetry Prometheus interoperability SIG is working on
180-
incorporating the results of this survey into the compatibility specification.
181-
The Prometheus community has
178+
SIG is working on stabilizing conventions for a wide variety of instrumentation.
179+
The OpenTelemetry Prometheus interoperability SIG is working on incorporating
180+
the results of this survey into the compatibility specification. The Prometheus
181+
community has
182182
[ambitious plans](https://prometheus.io/blog/2024/03/14/commitment-to-opentelemetry/)
183183
to add support for OpenTelemetry concepts.
184184

content/en/docs/concepts/resources/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ backend, resource attributes are grouped under the **Process** tab:
1313
![A screenshot from Jaeger showing an example output of resource attributes associated to a trace](screenshot-jaeger-resources.png)
1414

1515
A resource is added to the `TraceProvider` or `MetricProvider` when they are
16-
created during initialization. This association can not be changed later. After
17-
a resource is added, all spans and metrics produced from a `Tracer` or `Meter`
16+
created during initialization. This association cannot be changed later. After a
17+
resource is added, all spans and metrics produced from a `Tracer` or `Meter`
1818
from the provider will have the resource associated with them.
1919

2020
## Semantic Attributes with SDK-provided Default Value

content/en/docs/contributing/blog.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ with the following details:
5555
review that PR. That sponsor should ideally be from a different company.
5656

5757
Maintainers of SIG Communication will verify, that your blog post satisfies all
58-
the requirements for being accepted. If you can not name a SIG/sponsor in your
58+
the requirements for being accepted. If you cannot name a SIG/sponsor in your
5959
initial issue details, they will also point you to an appropriate SIG, you can
6060
reach out to for sponsorship. Having a sponsor is optional, but having one
6161
increases the chance of having your blog post reviewed and approved more

content/en/docs/demo/services/payment.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ cSpell:ignore: nanos
66
---
77

88
This service is responsible to process credit card payments for orders. It will
9-
return an error if the credit card is invalid or the payment can not be
9+
return an error if the credit card is invalid or the payment cannot be
1010
processed.
1111

1212
[Payment service source](https://github.com/open-telemetry/opentelemetry-demo/blob/main/src/payment/)

content/en/docs/languages/java/sdk.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1513,7 +1513,7 @@ public class OtlpAuthenticationConfig {
15131513
}
15141514

15151515
private static String refreshToken(String username, String password) {
1516-
// For a production scenario, this would be replaced with out-of-band request to exchange
1516+
// For a production scenario, this would be replaced with an out-of-band request to exchange
15171517
// username / password for bearer token.
15181518
return "abc123";
15191519
}

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ $ docker run --rm -p 8080:8080 nodejs-otel-getting-started
184184
Listening for requests on http://localhost:8080
185185
DockerCGroupV1Detector found resource. Resource {
186186
attributes: {
187-
'container.id': 'fffbeaf682f32ef86916f306ff9a7f88cc58048ab78f7de464da3c320ldb5c54'
187+
'container.id': 'fffbeaf682f32ef86916f306ff9a7f88cc58048ab78f7de464da3c3201db5c54'
188188
}
189189
}
190190
```

data/registry-schema.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"title": {
1010
"type": "string",
1111
"description": "The title of the entry",
12-
"errorMessage": "The title of the entry must be a string and can not be empty",
12+
"errorMessage": "The title of the entry must be a string and cannot be empty",
1313
"minLength": 1
1414
},
1515
"registryType": {
@@ -64,7 +64,7 @@
6464
"description": {
6565
"type": "string",
6666
"description": "A description of the entry",
67-
"errorMessage": "The description of the entry must be a string and can not be empty"
67+
"errorMessage": "The description of the entry must be a string and cannot be empty"
6868
},
6969
"license": {
7070
"type": "string",
@@ -94,7 +94,7 @@
9494
"oneOf": [
9595
{
9696
"pattern": "OpenTelemetry Authors",
97-
"errorMessage": "The name of the author can not contain 'OpenTelemetry' except for 'OpenTelemetry Authors'"
97+
"errorMessage": "The name of the author cannot contain 'OpenTelemetry' except for 'OpenTelemetry Authors'"
9898
},
9999
{
100100
"pattern": "^(?!.*OpenTelemetry).*$"
@@ -213,7 +213,7 @@
213213
"reason": {
214214
"type": "string",
215215
"description": "The reason for deprecation",
216-
"errorMessage": "The reason for deprecation must be a string and can not be empty"
216+
"errorMessage": "The reason for deprecation must be a string and cannot be empty"
217217
}
218218
},
219219
"required": ["reason"],

0 commit comments

Comments
 (0)