util/proto: fix doc comment

Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
support/v2.15
Evgenii Stratonikov 2022-04-05 11:43:02 +03:00 committed by LeL
parent 2aacaa6aba
commit e348c933b7
1 changed files with 1 additions and 1 deletions

View File

@ -286,7 +286,7 @@ func RepeatedInt32Size(field int, v []int32) (size, arraySize int) {
return RepeatedUInt64Size(field, convert)
}
// varUIntSize returns length of varint byte sequence for uint64 value 'x'.
// VarUIntSize returns length of varint byte sequence for uint64 value 'x'.
func VarUIntSize(x uint64) int {
return (bits.Len64(x|1) + 6) / 7
}