]> git.saurik.com Git - redis.git/commitdiff
Fixed typo in comment: "te" -> "the".
authorantirez <antirez@gmail.com>
Thu, 29 Mar 2012 07:33:29 +0000 (09:33 +0200)
committerantirez <antirez@gmail.com>
Thu, 29 Mar 2012 07:33:29 +0000 (09:33 +0200)
src/networking.c

index 406d1cde3bc6891e6bbda6e65605e50cfcec43d3..75f6cf2213cb8b83f8488d01eadee13f85474d66 100644 (file)
@@ -618,7 +618,7 @@ void freeClient(redisClient *c) {
         /* We lost connection with our master, force our slaves to resync
          * with us as well to load the new data set.
          *
-         * If server.masterhost is NULL te user called SLAVEOF NO ONE so
+         * If server.masterhost is NULL the user called SLAVEOF NO ONE so
          * slave resync is not needed. */
         if (server.masterhost != NULL) disconnectSlaves();
     }