From a63b9c24f03bffb741e819c1752c9cddc0cb7f36 Mon Sep 17 00:00:00 2001 From: Juarez Bochi Date: Sat, 23 Aug 2014 13:17:54 -0300 Subject: [PATCH] Fix typo in scripting.c comment Closes #1960 --- src/scripting.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scripting.c b/src/scripting.c index 5cd0b299..77a98abd 100644 --- a/src/scripting.c +++ b/src/scripting.c @@ -717,7 +717,7 @@ void scriptingInit(void) { server.lua_client->flags |= REDIS_LUA_CLIENT; } - /* Lua beginners ofter don't use "local", this is likely to introduce + /* Lua beginners often don't use "local", this is likely to introduce * subtle bugs in their code. To prevent problems we protect accesses * to global variables. */ scriptingEnableGlobalsProtection(lua);