Fix typo in prepareClientToWrite() comment.

This commit is contained in:
antirez 2015-11-27 16:17:21 +01:00
parent c2c68c50ef
commit e6a5117426

View File

@ -171,7 +171,7 @@ int prepareClientToWrite(client *c) {
if (c->fd <= 0) return C_ERR; /* Fake client for AOF loading. */
/* Schedule the client to write the output buffers to the socket only
* if not already done (there were no pending writes alreday and the client
* if not already done (there were no pending writes already and the client
* was yet not flagged), and, for slaves, if the slave can actually
* receive writes at this stage. */
if (!clientHasPendingReplies(c) &&