test: check formatting for all relevant packages in pkg/

This commit is contained in:
Anthony Romano
2016-03-30 12:37:08 -07:00
parent 0f64e01f6b
commit b539d3a411
7 changed files with 10 additions and 6 deletions

View File

@ -400,7 +400,7 @@ func (ivt *IntervalTree) MaxHeight() int {
return int((2 * math.Log2(float64(ivt.Len()+1))) + 0.5)
}
// InternalVisitor is used on tree searchs; return false to stop searching.
// IntervalVisitor is used on tree searchs; return false to stop searching.
type IntervalVisitor func(n *IntervalValue) bool
// Visit calls a visitor function on every tree node intersecting the given interval.