diff --git a/opentelemetry-sdk/src/trace/mod.rs b/opentelemetry-sdk/src/trace/mod.rs index d6c4ceae2e..ccaae00638 100644 --- a/opentelemetry-sdk/src/trace/mod.rs +++ b/opentelemetry-sdk/src/trace/mod.rs @@ -4,7 +4,7 @@ //! //! * The [`Tracer`] struct which performs all tracing operations. //! * The [`Span`] struct with is a mutable object storing information about the -//! current operation execution. +//! current operation execution. //! * The [`TracerProvider`] struct which configures and produces [`Tracer`]s. mod config; mod events; diff --git a/opentelemetry-zipkin/src/propagator/mod.rs b/opentelemetry-zipkin/src/propagator/mod.rs index b0c834ea43..c91d0cd44c 100644 --- a/opentelemetry-zipkin/src/propagator/mod.rs +++ b/opentelemetry-zipkin/src/propagator/mod.rs @@ -3,13 +3,13 @@ //! The `B3Propagator` facilitates `SpanContext` propagation using //! B3 Headers. This propagator supports both version of B3 headers, //! 1. Single Header: -//! b3: {trace_id}-{span_id}-{sampling_state}-{parent_span_id} +//! b3: {trace_id}-{span_id}-{sampling_state}-{parent_span_id} //! 2. Multiple Headers: -//! X-B3-TraceId: {trace_id} -//! X-B3-ParentSpanId: {parent_span_id} -//! X-B3-SpanId: {span_id} -//! X-B3-Sampled: {sampling_state} -//! X-B3-Flags: {debug_flag} +//! X-B3-TraceId: {trace_id} +//! X-B3-ParentSpanId: {parent_span_id} +//! X-B3-SpanId: {span_id} +//! X-B3-Sampled: {sampling_state} +//! X-B3-Flags: {debug_flag} //! //! If `inject_encoding` is set to `B3Encoding::SingleHeader` then `b3` header is used to inject //! and extract. Otherwise, separate headers are used to inject and extract.