diff --git a/metrics/provider/prometheus.go b/metrics/provider/prometheus.go index 48853b0c3..8e7cc7af2 100644 --- a/metrics/provider/prometheus.go +++ b/metrics/provider/prometheus.go @@ -46,7 +46,7 @@ func (p *prometheusProvider) NewGauge(name string) metrics.Gauge { }, []string{}) } -// NewGauge implements Provider via prometheus.NewSummaryFrom, i.e. the summary +// NewHistogram implements Provider via prometheus.NewSummaryFrom, i.e. the summary // is registered. The metric's namespace and subsystem are taken from the // Provider. Help is set to the name of the metric, and no const label names are // set. Buckets are ignored. diff --git a/transport/nats/subscriber.go b/transport/nats/subscriber.go index 4accab8e0..d4b5adcb6 100644 --- a/transport/nats/subscriber.go +++ b/transport/nats/subscriber.go @@ -150,7 +150,7 @@ func (s Subscriber) ServeMsg(nc *nats.Conn) func(msg *nats.Msg) { // types. type ErrorEncoder func(ctx context.Context, err error, reply string, nc *nats.Conn) -// ServerFinalizerFunc can be used to perform work at the end of an request +// SubscriberFinalizerFunc can be used to perform work at the end of an request // from a publisher, after the response has been written to the publisher. The principal // intended use is for request logging. type SubscriberFinalizerFunc func(ctx context.Context, msg *nats.Msg)