Skip to content

Commit a26f4d7

Browse files
committed
fix typos
1 parent 17a8723 commit a26f4d7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

develop-docs/sdk/telemetry/spans/span-api.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ title: Span API
77
</Alert>
88

99
<Alert level="info">
10-
The APIs specified in this documents MUST be implemented by all SDKs that don't use OpenTelemetry as their underlying tracing implementation.
10+
The APIs specified in this document MUST be implemented by all SDKs that don't use OpenTelemetry as their underlying tracing implementation.
1111
SDKs using OTel SHOULD follow their own already established span APIs but MAY orient themselves on this document if applicable.
1212
</Alert>
1313

@@ -19,7 +19,7 @@ This span has no parent span and groups together its children with a representat
1919
The topmost span within a service boundary is called the "Segment Span".
2020
Segment spans have a `parent_span_id` pointing to a "remote" span from the parent service.
2121

22-
For example, a distributed trace from backend to frontend, would have a segment span for the backend, and a segment span for the frotnend.
22+
For example, a distributed trace from backend to frontend, would have a segment span for the backend, and a segment span for the frontend.
2323
The frontend segment span is also the root span of the entire span tree.
2424

2525
SDKs MUST NOT expose names like "segment span" (e.g. in APIs) to users and SHOULD NOT (read "avoid") exposing "root span" if possible.
@@ -52,7 +52,7 @@ interface Span {
5252
When implementing the span interface, consider the following guidelines:
5353

5454
- SDKs MAY implement additional APIs, such as getters/setters for properties (e.g. `span.getStatus()`), or additional methods for convenience (e.g. `Span::spanContext()`).
55-
- SDK implementers SHOULD dissalow direct mutation (without setters) of span properties such as the span name, depending on the plaform and the challenges involved.
55+
- SDK implementers SHOULD disallow direct mutation (without setters) of span properties such as the span name, depending on the platform and the challenges involved.
5656
- SDK implementers MAY disallow direct read access to span properties, depending on the platform and the challenges involved.
5757

5858
## Span Starting APIs

0 commit comments

Comments
 (0)