Skip to content

Commit

Permalink
fix newlines
Browse files Browse the repository at this point in the history
  • Loading branch information
cijothomas committed Feb 8, 2024
1 parent 7a7a3b4 commit 0f0be3d
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions opentelemetry/src/metrics/meter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,7 @@ pub trait MeterProvider {
/// // Record measurements using the counter instrument add()
/// u64_counter.add(
/// 10,
/// &
/// [
/// &[
/// KeyValue::new("mykey1", "myvalue1"),
/// KeyValue::new("mykey2", "myvalue2"),
/// ]
Expand All @@ -96,8 +95,7 @@ pub trait MeterProvider {
/// // Record measurements using the counter instrument add()
/// f64_counter.add(
/// 3.15,
/// &
/// [
/// &[
/// KeyValue::new("mykey1", "myvalue1"),
/// KeyValue::new("mykey2", "myvalue2"),
/// ],
Expand Down

0 comments on commit 0f0be3d

Please sign in to comment.