raft: fix wrong comments in "mustCheckOutOfBounds"

This commit is contained in:
GhostComputing 2018-01-05 10:24:50 +08:00 committed by Gyuho Lee
parent 2fb9728473
commit b3916a393f

View File

@ -147,7 +147,7 @@ func (u *unstable) slice(lo uint64, hi uint64) []pb.Entry {
return u.entries[lo-u.offset : hi-u.offset]
}
// u.offset <= lo <= hi <= u.offset+len(u.offset)
// u.offset <= lo <= hi <= u.offset+len(u.entries)
func (u *unstable) mustCheckOutOfBounds(lo, hi uint64) {
if lo > hi {
u.logger.Panicf("invalid unstable.slice %d > %d", lo, hi)