Skip to content

Commit a265b13

Browse files
committed
A few small doc touch-ups in the various in_some of the in_memory_exporter modules.
1 parent e7784bb commit a265b13

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

opentelemetry-sdk/src/logs/in_memory_exporter.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ use std::sync::atomic::AtomicBool;
99
use std::sync::{Arc, Mutex};
1010
use std::time;
1111

12-
/// An in-memory logs exporter that stores logs data in memory..
12+
/// An in-memory logs exporter that stores logs data in memory.
1313
///
1414
/// This exporter is useful for testing and debugging purposes.
1515
/// It stores logs in a `Vec<OwnedLogData>`. Logs can be retrieved using
@@ -73,7 +73,7 @@ pub struct LogDataWithResource {
7373
pub resource: Cow<'static, Resource>,
7474
}
7575

76-
///Builder for ['InMemoryLogExporter'].
76+
///Builder for [`InMemoryLogExporter`].
7777
/// # Example
7878
///
7979
/// ```no_run

opentelemetry-sdk/src/trace/in_memory_exporter.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use std::time::Duration;
88
/// An in-memory span exporter that stores span data in memory.
99
///
1010
/// This exporter is useful for testing and debugging purposes. It stores
11-
/// metric data in a `Vec<SpanData>`. Metrics can be retrieved
11+
/// span data in a `Vec<SpanData>`. Spans can be retrieved
1212
/// using the `get_finished_spans` method.
1313
/// # Example
1414
/// ```

0 commit comments

Comments
 (0)