From 30544e7e33db37cd12f9d484fa78a338e0c5808f Mon Sep 17 00:00:00 2001 From: inshal96 <39904558+inshal96@users.noreply.github.com> Date: Fri, 4 Jan 2019 16:54:50 +0500 Subject: [PATCH] remove an extra 'a' in the comments --- src/object.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/object.c b/src/object.c index 48ffa42b9..c5f397a35 100644 --- a/src/object.c +++ b/src/object.c @@ -126,7 +126,7 @@ robj *createStringObject(const char *ptr, size_t len) { /* Create a string object from a long long value. When possible returns a * shared integer object, or at least an integer encoded one. * - * If valueobj is non zero, the function avoids returning a a shared + * If valueobj is non zero, the function avoids returning a shared * integer, because the object is going to be used as value in the Redis key * space (for instance when the INCR command is used), so we want LFU/LRU * values specific for each key. */