@@ -23,7 +23,6 @@ Table of Contents
23
23
* [ Determining the Parent Span from a Context] ( #determining-the-parent-span-from-a-context )
24
24
* [ Add Links] ( #add-links )
25
25
* [ Span operations] ( #span-operations )
26
- * [ Get Context] ( #get-context )
27
26
* [ IsRecording] ( #isrecording )
28
27
* [ Set Attributes] ( #set-attributes )
29
28
* [ Add Events] ( #add-events )
@@ -170,7 +169,7 @@ These functions MUST delegate to the `Tracing Context Utilities`.
170
169
171
170
These parts of the span serve to identify it, both in-process and remotely. They are immutable
172
171
pieces of the ` Span ` , as opposed to the data collecting [ span operations] ( #span-operations ) .
173
- These identifiers conform to the [ W3C TraceContext specification] ( https://www.w3.org/TR/trace-context/ ) .
172
+ These identifiers conform to the [ W3C TraceContext specification] ( https://www.w3.org/TR/trace-context/ ) .
174
173
It contains two identifiers - a ` TraceId ` and a ` SpanId ` - along with a set of common
175
174
` TraceFlags ` and system-specific ` TraceState ` values.
176
175
@@ -368,7 +367,7 @@ When a new `Span` is created from a `Context`, the `Context` may contain a `Span
368
367
representing the currently active instance, and will be used as parent.
369
368
If there is no ` Span ` in the ` Context ` , the newly created ` Span ` will be a root span.
370
369
371
- A remote span's [ span identifiers] ( #span-identifiers ) can be set as active in a ` Context ` ,
370
+ A remote span's [ span identifiers] ( #span-identifiers ) can be set as active in a ` Context ` ,
372
371
through the use of a [ Propagated Span] ( #propagated-span-creation ) .
373
372
For example, a ` Propagator ` performing context extraction may need this.
374
373
@@ -567,7 +566,7 @@ calling of corresponding API.
567
566
### Propagated Span creation
568
567
569
568
The API MUST provide an operation for creating an object implementing the ` Span ` interface
570
- provided its identifiers. This is done in order to expose it in operations such as in-process
569
+ provided its identifiers. This is done in order to expose it in operations such as in-process
571
570
` Span ` propagation.
572
571
573
572
If a new type is required for supporting this operation, it SHOULD be named ` PropagatedSpan ` .
0 commit comments