From e6a51174263d2501a8c35baa9a5773b2da9d00bf Mon Sep 17 00:00:00 2001 From: antirez Date: Fri, 27 Nov 2015 16:17:21 +0100 Subject: [PATCH] Fix typo in prepareClientToWrite() comment. --- src/networking.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/networking.c b/src/networking.c index 3b9c77cf..079c1c3e 100644 --- a/src/networking.c +++ b/src/networking.c @@ -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) &&