Rename some methods and funcs since we are here

Very probably some of these can be made private.
This commit is contained in:
kortschak 2014-07-07 12:23:32 +09:30
parent d1fdba1cbb
commit e39063e3ec
4 changed files with 12 additions and 12 deletions

View file

@ -105,7 +105,7 @@ func (it *AllIterator) Close() {
}
func (it *AllIterator) Size() (int64, bool) {
size, err := it.ts.GetApproximateSizeForPrefix(it.prefix)
size, err := it.ts.SizeOfPrefix(it.prefix)
if err == nil {
return size, false
}