Skip to content

Commit 57827fd

Browse files
fix formatting
1 parent 8278288 commit 57827fd

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

examples/opentelemetry-error.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,10 +92,7 @@ fn main() -> Result<(), Box<dyn StdError + Send + Sync + 'static>> {
9292
struct WriterExporter;
9393

9494
impl SpanExporter for WriterExporter {
95-
async fn export(
96-
&self,
97-
batch: Vec<sdk::trace::SpanData>,
98-
) -> OTelSdkResult {
95+
async fn export(&self, batch: Vec<sdk::trace::SpanData>) -> OTelSdkResult {
9996
let mut writer = std::io::stdout();
10097
for span in batch {
10198
writeln!(writer, "{}", SpanData(span)).unwrap();

0 commit comments

Comments
 (0)