Skip to content

Commit 1b9d7bb

Browse files
committed
cargo doc
1 parent ba9847f commit 1b9d7bb

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

opentelemetry-sdk/src/metrics/in_memory_exporter.rs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ type InMemoryMetrics = Vec<ResourceMetrics>;
1616
/// An in-memory metrics exporter that stores metrics data in memory.
1717
///
1818
/// This exporter is useful for testing and debugging purposes. It stores
19-
/// metric data in a user-provided [`Vec<ResourceMetrics>`][1], from which the
20-
/// Metrics can be retrieved as well.
19+
/// metric data in a user-provided `Vec<ResourceMetrics>`, from which the
20+
/// exported data can be retrieved as well.
2121
///
2222
/// # Panics
2323
///
@@ -61,8 +61,6 @@ type InMemoryMetrics = Vec<ResourceMetrics>;
6161
/// }
6262
///# }
6363
/// ```
64-
///
65-
/// [1]: InMemoryMetrics
6664
pub struct InMemoryMetricExporter {
6765
metrics: Arc<Mutex<InMemoryMetrics>>,
6866
temporality: Temporality,

0 commit comments

Comments
 (0)