Skip to content

Commit f9076ea

Browse files
authored
CI fix (#1970)
1 parent 2eba546 commit f9076ea

File tree

2 files changed

+7
-7
lines changed
  • opentelemetry-sdk/src/trace
  • opentelemetry-zipkin/src/propagator

2 files changed

+7
-7
lines changed

opentelemetry-sdk/src/trace/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//!
55
//! * The [`Tracer`] struct which performs all tracing operations.
66
//! * The [`Span`] struct with is a mutable object storing information about the
7-
//! current operation execution.
7+
//! current operation execution.
88
//! * The [`TracerProvider`] struct which configures and produces [`Tracer`]s.
99
mod config;
1010
mod events;

opentelemetry-zipkin/src/propagator/mod.rs

+6-6
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
//! The `B3Propagator` facilitates `SpanContext` propagation using
44
//! B3 Headers. This propagator supports both version of B3 headers,
55
//! 1. Single Header:
6-
//! b3: {trace_id}-{span_id}-{sampling_state}-{parent_span_id}
6+
//! b3: {trace_id}-{span_id}-{sampling_state}-{parent_span_id}
77
//! 2. Multiple Headers:
8-
//! X-B3-TraceId: {trace_id}
9-
//! X-B3-ParentSpanId: {parent_span_id}
10-
//! X-B3-SpanId: {span_id}
11-
//! X-B3-Sampled: {sampling_state}
12-
//! X-B3-Flags: {debug_flag}
8+
//! X-B3-TraceId: {trace_id}
9+
//! X-B3-ParentSpanId: {parent_span_id}
10+
//! X-B3-SpanId: {span_id}
11+
//! X-B3-Sampled: {sampling_state}
12+
//! X-B3-Flags: {debug_flag}
1313
//!
1414
//! If `inject_encoding` is set to `B3Encoding::SingleHeader` then `b3` header is used to inject
1515
//! and extract. Otherwise, separate headers are used to inject and extract.

0 commit comments

Comments
 (0)