fix typos

revert from less ideal wording

more typos
This commit is contained in:
Tiago Matias 2018-11-13 09:07:58 -02:00
parent 405a55521f
commit 2e82759ca9
7 changed files with 19 additions and 20 deletions

View file

@ -22,14 +22,14 @@ import (
// LabelNeq produces a not-equal label selector expression.
// Label is passed verbatim, and value is double-quote escaped
// using Go's escaping is used on value (as per the PromQL rules).
// using Go's escaping (as per the PromQL rules).
func LabelNeq(label string, value string) string {
return fmt.Sprintf("%s!=%q", label, value)
}
// LabelEq produces a equal label selector expression.
// Label is passed verbatim, and value is double-quote escaped
// using Go's escaping is used on value (as per the PromQL rules).
// using Go's escaping (as per the PromQL rules).
func LabelEq(label string, value string) string {
return fmt.Sprintf("%s=%q", label, value)
}
@ -52,7 +52,7 @@ func NameMatches(expr string) string {
}
// NameNotMatches produces a label selector expression that checks that the series name doesn't matches the given expression.
// It's a convinience wrapper around LabelNotMatches.
// It's a convenience wrapper around LabelNotMatches.
func NameNotMatches(expr string) string {
return LabelNotMatches("__name__", expr)
}

View file

@ -27,7 +27,7 @@ import (
// NB: the official prometheus API client at https://github.com/prometheus/client_golang
// is rather lackluster -- as of the time of writing of this file, it lacked support
// for querying the series metadata, which we need for the adapter. Instead, we use
// for querying the series metadata, which we need for the adapter. Instead, we use
// this client.
// Selector represents a series selector