Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos detected by misspell #1568

Merged
merged 1 commit into from
Jul 28, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/ISSUE_REPORT.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ assignees: ''
---

**What happened?**
Describe the problem that occured.
Describe the problem that occurred.

**What did you expect would happen?**
Describe the expected result/output.
Expand Down
2 changes: 1 addition & 1 deletion content/en/blog/2022/apisix.md
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ provides a lot of value.
When the request does not reach the demo-server, the output would not include
the span of demo-server.

![demo-server disconneted](/img/apisix/demo-server-disconnected.png)
![demo-server disconnected](/img/apisix/demo-server-disconnected.png)

## Disable the Plugin

Expand Down
10 changes: 5 additions & 5 deletions content/en/docs/collector/trace-receiver.md
Original file line number Diff line number Diff line change
Expand Up @@ -1840,7 +1840,7 @@ Here is what `appendAtmSystemInstrScopeSpans` looks like after the update:
```go
func appendAtmSystemInstrScopeSpans(resourceSpans *ptrace.ResourceSpans) (ptrace.ScopeSpans){
scopeSpans := resourceSpans.ScopeSpans().AppendEmpty()
scopeSpans.Scope().SetName("atm-sytem")
scopeSpans.Scope().SetName("atm-system")
scopeSpans.Scope().SetVersion("v1.0")
return scopeSpans
}
Expand Down Expand Up @@ -2137,7 +2137,7 @@ Resource labels:
-> service.version: STRING(v1.0)
ScopeSpans #0
ScopeSpans SchemaURL:
InstrumentationScope atm-sytem v1.0
InstrumentationScope atm-system v1.0
ResourceSpans #1
Resource SchemaURL:
Resource labels:
Expand All @@ -2149,7 +2149,7 @@ Resource labels:
-> service.version: STRING(v2.5)
ScopeSpans #0
ScopeSpans SchemaURL:
InstrumentationScope atm-sytem v1.0
InstrumentationScope atm-system v1.0
Span #0
Trace ID : 5cce8a774d4546c2a5cbdeb607ec74c9
Parent ID :
Expand All @@ -2173,7 +2173,7 @@ Resource labels:
-> service.version: STRING(v1.0)
ScopeSpans #0
ScopeSpans SchemaURL:
InstrumentationScope atm-sytem v1.0
InstrumentationScope atm-system v1.0
ResourceSpans #1
Resource SchemaURL:
Resource labels:
Expand All @@ -2185,7 +2185,7 @@ Resource labels:
-> service.version: STRING(v2.5)
ScopeSpans #0
ScopeSpans SchemaURL:
InstrumentationScope atm-sytem v1.0
InstrumentationScope atm-system v1.0
Span #0
Trace ID : 8a6ca822db0847f48facfebbb08bbb9e
Parent ID :
Expand Down
2 changes: 1 addition & 1 deletion content/en/docs/instrumentation/java/manual.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ the most brittle option for library instrumentation.
## Acquiring a Tracer

To do [Tracing](/docs/concepts/signals/traces/#tracing-in-opentelemetry) you'll
need to aquire a [`Tracer`](/docs/concepts/signals/traces/#tracer).
need to acquire a [`Tracer`](/docs/concepts/signals/traces/#tracer).

**Note:** Methods of the OpenTelemetry SDK should never be called.

Expand Down
2 changes: 1 addition & 1 deletion content/en/docs/instrumentation/js/instrumentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ In contrast, the `SimpleSpanProcessor` processes spans as they are created. This
means that if you create 5 spans, each will be processed an exported before the
next span is created in code. This can be helpful in scenarios where you do not
want to risk losing a batch, or if you're experimenting with OpenTelemetry in
development. However, it also comes with potentially signficant overhead,
development. However, it also comes with potentially significant overhead,
especially if spans are being exported over a network - each time a call to
create a span is made, it would be processed and sent over a network before your
app's execution could continue.
Expand Down
2 changes: 1 addition & 1 deletion content/en/docs/instrumentation/net/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ The following sample demonstrates automatic and manual
[tracing](/docs/concepts/signals/traces/#tracing-in-opentelemetry) with ASP.NET
Core.

First, install requried packages:
First, install required packages:

```shell
dotnet add package OpenTelemetry.Extensions.Hosting --prerelease
Expand Down
2 changes: 1 addition & 1 deletion content/en/docs/instrumentation/net/manual.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ API, repurposing existing constructs like `ActivitySource` and `Activity` to be
OpenTelemetry-compliant under the covers.

However, there are parts of the OpenTelemetry API and terminology that .NET
developers must still know to be able to instrument their applications, wich are
developers must still know to be able to instrument their applications, which are
covered here as well as the `System.Diagnostics` API.

If you prefer to use OpenTelemetry APIs instead of `System.Diagnostics` APIs,
Expand Down