Fix exported function comments (#6002)

Signed-off-by: zhulongcheng <zhulongcheng.dev@gmail.com>
pull/6009/head
zhulongcheng 6 years ago committed by Brian Brazil
parent 3b3eaf3496
commit 970ef41bb6
  1. 2
      pkg/gate/gate.go
  2. 2
      pkg/textparse/openmetricsparse.go
  3. 2
      pkg/textparse/promparse.go
  4. 2
      util/httputil/cors.go
  5. 2
      util/stats/query_stats.go

@ -20,7 +20,7 @@ type Gate struct {
ch chan struct{}
}
// NewGate returns a query gate that limits the number of queries
// New returns a query gate that limits the number of queries
// being concurrently executed.
func New(length int) *Gate {
return &Gate{

@ -87,7 +87,7 @@ type OpenMetricsParser struct {
offsets []int
}
// New returns a new parser of the byte slice.
// NewOpenMetricsParser returns a new parser of the byte slice.
func NewOpenMetricsParser(b []byte) Parser {
return &OpenMetricsParser{l: &openMetricsLexer{b: b}}
}

@ -153,7 +153,7 @@ type PromParser struct {
offsets []int
}
// New returns a new parser of the byte slice.
// NewPromParser returns a new parser of the byte slice.
func NewPromParser(b []byte) Parser {
return &PromParser{l: &promlexer{b: append(b, '\n')}}
}

@ -25,7 +25,7 @@ var corsHeaders = map[string]string{
"Vary": "Origin",
}
// Enables cross-site script calls.
// SetCORS enables cross-site script calls.
func SetCORS(w http.ResponseWriter, o *regexp.Regexp, r *http.Request) {
origin := r.Header.Get("Origin")
if origin == "" {

@ -54,7 +54,7 @@ func (s QueryTiming) String() string {
}
}
// Return a string representation of a QueryTiming span operation.
// SpanOperation returns a string representation of a QueryTiming span operation.
func (s QueryTiming) SpanOperation() string {
switch s {
case EvalTotalTime:

Loading…
Cancel
Save