Correct typo in Counter.Set() docstring.

This commit is contained in:
Julius Volz 2015-04-30 18:51:33 +02:00
parent a7b24194e8
commit 066ab78410
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ type Counter interface {
// Set is used to set the Counter to an arbitrary value. It is only used
// if you have to transfer a value from an external counter into this
// Prometheus metrics. Do not use it for regular handling of a
// Prometheus metric. Do not use it for regular handling of a
// Prometheus counter (as it can be used to break the contract of
// monotonically increasing values).
Set(float64)