Typo: entires -> entries in several places.

This commit is contained in:
antirez
2018-06-07 14:36:56 +02:00
parent dfb3bf1b1e
commit a7dbe37d53
3 changed files with 7 additions and 7 deletions

View File

@ -2377,7 +2377,7 @@ void clusterSendPing(clusterLink *link, int type) {
* same time.
*
* Since we have non-voting slaves that lower the probability of an entry
* to feature our node, we set the number of entires per packet as
* to feature our node, we set the number of entries per packet as
* 10% of the total nodes we have. */
wanted = floor(dictSize(server.cluster->nodes)/10);
if (wanted < 3) wanted = 3;