Fix typo in scripting.c comment

Closes #1960
This commit is contained in:
Juarez Bochi
2014-10-06 10:01:36 +02:00
committed by antirez
parent a7a2f69bdb
commit 364aeed96d
+1 -1
View File
@@ -716,7 +716,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);