Commit 7bad78bd authored by antirez's avatar antirez
Browse files

Fix abort typo in Lua debugger help screen.

parent f8547e53
...@@ -2271,7 +2271,7 @@ ldbLog(sdsnew("[e]eval <code> Execute some Lua code (in a different callfr ...@@ -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("[r]edis <cmd> Execute a Redis command."));
ldbLog(sdsnew("[m]axlen [len] Trim logged Redis replies and Lua var dumps to len.")); 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(" 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(" mode dataset changes will be retained."));
ldbLog(sdsnew("")); ldbLog(sdsnew(""));
ldbLog(sdsnew("Debugger functions you can call from Lua scripts:")); ldbLog(sdsnew("Debugger functions you can call from Lua scripts:"));
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment