Skip to content

Commit

Permalink
Switch to single comma delimiter
Browse files Browse the repository at this point in the history
  • Loading branch information
hlbarber committed Dec 27, 2019
1 parent 5fe5f17 commit 9596be0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ where
.into_iter()
.fold(String::new(), |mut spans, span| {
if spans != String::new() {
spans = format!("{}::{}", spans, span.name());
spans = format!("{}:{}", spans, span.name());
} else {
spans = span.name().to_string();
}
Expand Down

0 comments on commit 9596be0

Please sign in to comment.