1
0
mirror of https://github.com/go-kit/kit.git synced 2025-07-17 01:12:38 +02:00

Merge pull request #1198 from alexander-melentyev/fix-typo

Fix docs
This commit is contained in:
Chris Hines
2021-10-30 17:01:54 -04:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@ -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.

View File

@ -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)