Fix exported function comments (#566)

Signed-off-by: zhulongcheng <zhulongcheng.me@gmail.com>
This commit is contained in:
zhulongcheng 2019-03-25 16:17:28 +08:00 committed by Krasi Georgiev
parent 4d03c70800
commit e11e01f68d
3 changed files with 6 additions and 6 deletions

View File

@ -65,7 +65,7 @@ func (cm *Meta) writeHash(h hash.Hash) error {
return nil return nil
} }
// Returns true if the chunk overlaps [mint, maxt]. // OverlapsClosedInterval Returns true if the chunk overlaps [mint, maxt].
func (cm *Meta) OverlapsClosedInterval(mint, maxt int64) bool { func (cm *Meta) OverlapsClosedInterval(mint, maxt int64) bool {
// The chunk itself is a closed interval [cm.MinTime, cm.MaxTime]. // The chunk itself is a closed interval [cm.MinTime, cm.MaxTime].
return cm.MinTime <= maxt && mint <= cm.MaxTime return cm.MinTime <= maxt && mint <= cm.MaxTime

View File

@ -27,7 +27,7 @@ var (
ErrInvalidChecksum = errors.New("invalid checksum") ErrInvalidChecksum = errors.New("invalid checksum")
) )
// enbuf is a helper type to populate a byte slice with various types. // Encbuf is a helper type to populate a byte slice with various types.
type Encbuf struct { type Encbuf struct {
B []byte B []byte
C [binary.MaxVarintLen64]byte C [binary.MaxVarintLen64]byte
@ -65,14 +65,14 @@ func (e *Encbuf) PutVarint64(x int64) {
e.B = append(e.B, e.C[:n]...) e.B = append(e.B, e.C[:n]...)
} }
// putVarintStr writes a string to the buffer prefixed by its varint length (in bytes!). // PutUvarintStr writes a string to the buffer prefixed by its varint length (in bytes!).
func (e *Encbuf) PutUvarintStr(s string) { func (e *Encbuf) PutUvarintStr(s string) {
b := *(*[]byte)(unsafe.Pointer(&s)) b := *(*[]byte)(unsafe.Pointer(&s))
e.PutUvarint(len(b)) e.PutUvarint(len(b))
e.PutString(s) e.PutString(s)
} }
// putHash appends a hash over the buffers current contents to the buffer. // PutHash appends a hash over the buffers current contents to the buffer.
func (e *Encbuf) PutHash(h hash.Hash) { func (e *Encbuf) PutHash(h hash.Hash) {
h.Reset() h.Reset()
_, err := h.Write(e.B) _, err := h.Write(e.B)
@ -82,7 +82,7 @@ func (e *Encbuf) PutHash(h hash.Hash) {
e.B = h.Sum(e.B) e.B = h.Sum(e.B)
} }
// decbuf provides safe methods to extract data from a byte slice. It does all // Decbuf provides safe methods to extract data from a byte slice. It does all
// necessary bounds checking and advancing of the byte slice. // necessary bounds checking and advancing of the byte slice.
// Several datums can be extracted without checking for errors. However, before using // Several datums can be extracted without checking for errors. However, before using
// any datum, the err() method must be checked. // any datum, the err() method must be checked.

View File

@ -75,7 +75,7 @@ func NewRegexpMatcher(name, pattern string) (Matcher, error) {
return &regexpMatcher{name: name, re: re}, nil return &regexpMatcher{name: name, re: re}, nil
} }
// NewRegexpMatcher returns a new matcher verifying that a value matches // NewMustRegexpMatcher returns a new matcher verifying that a value matches
// the regular expression pattern. Will panic if the pattern is not a valid // the regular expression pattern. Will panic if the pattern is not a valid
// regular expression. // regular expression.
func NewMustRegexpMatcher(name, pattern string) Matcher { func NewMustRegexpMatcher(name, pattern string) Matcher {