Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/modules/lua/function_lua.c
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ static void freeCompiledFunc(lua_State *lua,

/*
* Compile a given script code by generating a set of compiled functions. These
* functions are also saved into the the registry of the Lua environment.
* functions are also saved into the registry of the Lua environment.
*
* Returns an array of compiled functions. The `compileFunction` struct stores a
* Lua ref that allows to later retrieve the function from the registry.
Expand Down
2 changes: 1 addition & 1 deletion src/networking.c
Original file line number Diff line number Diff line change
Expand Up @@ -4038,7 +4038,7 @@ void discardCommandQueue(client *c) {
queue->off = queue->len = queue->cap = 0;
}

/* Returns the number of keys in the the incr_states array after adding keys. */
/* Returns the number of keys in the incr_states array after adding keys. */
static int addKeysToIncrFindBatch(client *c,
struct serverCommand *cmd,
robj **argv,
Expand Down
2 changes: 1 addition & 1 deletion src/server.c
Original file line number Diff line number Diff line change
Expand Up @@ -807,7 +807,7 @@ dictType migrateCacheDictType = {
.entryDestructor = dictEntryDestructorSdsKey,
};

/* Dict for for case-insensitive search using null terminated C strings.
/* Dict for case-insensitive search using null terminated C strings.
* The keys stored in dict are sds though. */
dictType stringSetDictType = {
.entryGetKey = dictEntryGetKey,
Expand Down
Loading