From 705bc78a77339b38ab75a6b126b5928bd498ebef Mon Sep 17 00:00:00 2001 From: antirez Date: Wed, 12 Apr 2017 12:28:05 +0200 Subject: [PATCH] Fix typo in feedReplicationBacklog() top comment. --- src/replication.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/replication.c b/src/replication.c index bde37bc43..c7a703b85 100644 --- a/src/replication.c +++ b/src/replication.c @@ -122,7 +122,7 @@ void freeReplicationBacklog(void) { /* Add data to the replication backlog. * This function also increments the global replication offset stored at * server.master_repl_offset, because there is no case where we want to feed - * the backlog without incrementing the buffer. */ + * the backlog without incrementing the offset. */ void feedReplicationBacklog(void *ptr, size_t len) { unsigned char *p = ptr;