ソースを参照

raft: correct doc comment

Tamir Duberstein 9 年 前
コミット
68db18667a
2 ファイル変更5 行追加5 行削除
  1. 3 3
      raft/raft.go
  2. 2 2
      raft/raft_test.go

+ 3 - 3
raft/raft.go

@@ -869,9 +869,9 @@ func (r *raft) loadState(state pb.HardState) {
 	r.Vote = state.Vote
 }
 
-// pastElectionTimeout returns true if r.electionElapsed is greater than the
-// randomized election timeout in [electiontimeout, 2 * electiontimeout - 1].
-// Otherwise, it returns false.
+// pastElectionTimeout returns true iff r.electionElapsed is greater
+// than or equal to the randomized election timeout in
+// [electiontimeout, 2 * electiontimeout - 1].
 func (r *raft) pastElectionTimeout() bool {
 	return r.electionElapsed >= r.randomizedElectionTimeout
 }

+ 2 - 2
raft/raft_test.go

@@ -747,7 +747,7 @@ func TestCommit(t *testing.T) {
 	}
 }
 
-func TestIsElectionTimeout(t *testing.T) {
+func TestPastElectionTimeout(t *testing.T) {
 	tests := []struct {
 		elapse       int
 		wprobability float64
@@ -776,7 +776,7 @@ func TestIsElectionTimeout(t *testing.T) {
 			got = math.Floor(got*10+0.5) / 10.0
 		}
 		if got != tt.wprobability {
-			t.Errorf("#%d: possibility = %v, want %v", i, got, tt.wprobability)
+			t.Errorf("#%d: probability = %v, want %v", i, got, tt.wprobability)
 		}
 	}
 }