From ade800722780649047e1d1e2ca9885963c25c14b Mon Sep 17 00:00:00 2001 From: Arun Kumar Date: Tue, 23 Oct 2018 16:56:35 +0530 Subject: [PATCH] Fixed grammatical typo Fixed typo for word 'dictionary' --- src/modules/hellodict.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/hellodict.c b/src/modules/hellodict.c index 651615b03..1428a1381 100644 --- a/src/modules/hellodict.c +++ b/src/modules/hellodict.c @@ -125,7 +125,7 @@ int RedisModule_OnLoad(RedisModuleCtx *ctx, RedisModuleString **argv, int argc) cmd_KEYRANGE,"readonly",1,1,0) == REDISMODULE_ERR) return REDISMODULE_ERR; - /* Create our global dictionray. Here we'll set our keys and values. */ + /* Create our global dictionary. Here we'll set our keys and values. */ Keyspace = RedisModule_CreateDict(NULL); return REDISMODULE_OK;