Skip to content

Commit 4db67d5

Browse files
authored
chore: fix unused_doc_comments warning (#1309)
Signed-off-by: Ruihang Xia <[email protected]>
1 parent a612972 commit 4db67d5

File tree

1 file changed

+2
-2
lines changed
  • opentelemetry-stackdriver/src

1 file changed

+2
-2
lines changed

opentelemetry-stackdriver/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -328,8 +328,8 @@ where
328328
),
329329
display_name: Some(to_truncate(span.name.into_owned())),
330330
span_id: hex::encode(span.span_context.span_id().to_bytes()),
331-
/// From the API docs: If this is a root span,
332-
/// then this field must be empty.
331+
// From the API docs: If this is a root span,
332+
// then this field must be empty.
333333
parent_span_id: match span.parent_span_id {
334334
SpanId::INVALID => "".to_owned(),
335335
_ => hex::encode(span.parent_span_id.to_bytes()),

0 commit comments

Comments
 (0)