summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuarez Bochi <jbochi@gmail.com>2014-08-23 13:17:54 -0300
committerMatt Stancliff <matt@genges.com>2014-09-29 06:49:08 -0400
commita63b9c24f03bffb741e819c1752c9cddc0cb7f36 (patch)
tree64949c22bc9da62f0ff59ef6296fd45a85a26cad
parent38a5db6c9ac21812e4942d7016e4e58429f9ab09 (diff)
downloadredis-a63b9c24f03bffb741e819c1752c9cddc0cb7f36.tar.gz
Fix typo in scripting.c comment
Closes #1960
-rw-r--r--src/scripting.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scripting.c b/src/scripting.c
index 5cd0b299c..77a98abdc 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);