raft: (server) fix a typo in exception message

This commit is contained in:
Konstantin Osipov
2021-10-08 19:52:29 +03:00
parent 9cde1cdf71
commit 8f303844df

View File

@@ -225,7 +225,7 @@ struct dropped_entry : public error {
};
struct commit_status_unknown : public error {
commit_status_unknown() : error("Commit staus of the entry is unknown") {}
commit_status_unknown() : error("Commit status of the entry is unknown") {}
};
struct stopped_error : public error {