From 3c35bfc4676bdbb521a97073c067c3dde61ff671 Mon Sep 17 00:00:00 2001 From: raymonder jin Date: Sat, 1 Jan 2022 21:41:18 +0800 Subject: [PATCH] fix-typo happend -> happened --- src/braft/raft.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/braft/raft.h b/src/braft/raft.h index d696101f..710591f0 100644 --- a/src/braft/raft.h +++ b/src/braft/raft.h @@ -394,7 +394,7 @@ struct NodeStatus { // If the value is 0, means no pending logs. // // WARNING: if this value is not 0, and keep the same in a long time, - // means something happend to prevent the node to commit logs in a + // means something happened to prevent the node to commit logs in a // large probability, and users should check carefully to find out // the reasons. int64_t pending_index; @@ -409,7 +409,7 @@ struct NodeStatus { // The current applying index. If the value is 0, means no applying log. // // WARNING: if this value is not 0, and keep the same in a long time, means - // the apply thread hung, users should check if a deadlock happend, or some + // the apply thread hung, users should check if a deadlock happened, or some // time-consuming operations is handling in place. int64_t applying_index;