diff --git a/contrib/metric/otelmetric/otelmetric_meter_observable_counter_performer.go b/contrib/metric/otelmetric/otelmetric_meter_observable_counter_performer.go index b4111fa79..25dca59b1 100644 --- a/contrib/metric/otelmetric/otelmetric_meter_observable_counter_performer.go +++ b/contrib/metric/otelmetric/otelmetric_meter_observable_counter_performer.go @@ -23,7 +23,7 @@ type localObservableCounterPerformer struct { metric.Float64ObservableCounter } -// newCounterPerformer creates and returns a CounterPerformer that truly takes action to implement Counter. +// newObservableCounterPerformer creates and returns a CounterPerformer that truly takes action to implement Counter. func (l *localMeterPerformer) newObservableCounterPerformer( meter metric.Meter, metricName string, diff --git a/contrib/metric/otelmetric/otelmetric_meter_observable_gauge_performer.go b/contrib/metric/otelmetric/otelmetric_meter_observable_gauge_performer.go index 7ff414791..d8ab5da73 100644 --- a/contrib/metric/otelmetric/otelmetric_meter_observable_gauge_performer.go +++ b/contrib/metric/otelmetric/otelmetric_meter_observable_gauge_performer.go @@ -23,7 +23,7 @@ type localObservableGaugePerformer struct { metric.Float64ObservableGauge } -// newGaugePerformer creates and returns a GaugePerformer that truly takes action to implement Gauge. +// newObservableGaugePerformer creates and returns a GaugePerformer that truly takes action to implement Gauge. func (l *localMeterPerformer) newObservableGaugePerformer( meter metric.Meter, metricName string, diff --git a/contrib/metric/otelmetric/otelmetric_meter_performer.go b/contrib/metric/otelmetric/otelmetric_meter_performer.go index 574bb199b..ef4b653ca 100644 --- a/contrib/metric/otelmetric/otelmetric_meter_performer.go +++ b/contrib/metric/otelmetric/otelmetric_meter_performer.go @@ -26,7 +26,7 @@ type localMeterPerformer struct { *metric.MeterProvider } -// newPerformer creates and returns gmetric.Meter. +// newMeterPerformer creates and returns gmetric.Meter. func newMeterPerformer(provider *metric.MeterProvider, option gmetric.MeterOption) gmetric.MeterPerformer { meterPerformer := &localMeterPerformer{ MeterOption: option,