api: fix godoc comment

This commit is contained in:
André Carvalho 2017-03-31 21:31:42 -03:00
parent 57f23d303f
commit 7b5f0fdaa9
No known key found for this signature in database
GPG Key ID: 440C9C458D3A1E61
1 changed files with 1 additions and 1 deletions

View File

@ -282,7 +282,7 @@ type QueryAPI interface {
Query(ctx context.Context, query string, ts time.Time) (model.Value, error)
// QueryRange performs a query for the given range.
QueryRange(ctx context.Context, query string, r Range) (model.Value, error)
// QueryLabelValues performs a query for the values of the given label.
// LabelValues performs a query for the values of the given label.
LabelValues(ctx context.Context, label string) (model.LabelValues, error)
}