summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2017-06-30 12:12:00 +0200
committerantirez <antirez@gmail.com>2017-06-30 12:12:17 +0200
commit7018d27dfe1e1af55b9e90b142f51d07f4b1f6e1 (patch)
tree52c3fcd4ed24d2ca5dbad9a382a929e0d5e10190
parentd557144ebbd58deb67cfbddf4d5c675bafb523c6 (diff)
downloadredis-7018d27dfe1e1af55b9e90b142f51d07f4b1f6e1.tar.gz
Fix abort typo in Lua debugger help screen.
-rw-r--r--src/scripting.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scripting.c b/src/scripting.c
index 216dfbf19..5b5cb71d1 100644
--- a/src/scripting.c
+++ b/src/scripting.c
@@ -2271,7 +2271,7 @@ ldbLog(sdsnew("[e]eval <code> Execute some Lua code (in a different callfr
ldbLog(sdsnew("[r]edis <cmd> Execute a Redis command."));
ldbLog(sdsnew("[m]axlen [len] Trim logged Redis replies and Lua var dumps to len."));
ldbLog(sdsnew(" Specifying zero as <len> means unlimited."));
-ldbLog(sdsnew("[a]abort Stop the execution of the script. In sync"));
+ldbLog(sdsnew("[a]bort Stop the execution of the script. In sync"));
ldbLog(sdsnew(" mode dataset changes will be retained."));
ldbLog(sdsnew(""));
ldbLog(sdsnew("Debugger functions you can call from Lua scripts:"));