Browse Source

Merge pull request #9122 from gyuho/temp

raft: fix wrong comments in "mustCheckOutOfBounds"
Gyuho Lee 8 years ago
parent
commit
9bd9d2041f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      raft/log_unstable.go

+ 1 - 1
raft/log_unstable.go

@@ -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)