From 56d9bb8c554b3d8f64d6a5c6c77c9287dabf541b Mon Sep 17 00:00:00 2001 From: antirez Date: Thu, 12 Nov 2015 11:21:20 +0100 Subject: [PATCH] Lua debugger: fix help typo, beark -> break. --- src/scripting.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/scripting.c b/src/scripting.c index 37f7ea62..8fcf40dc 100644 --- a/src/scripting.c +++ b/src/scripting.c @@ -2100,10 +2100,10 @@ ldbLog(sdsnew("[c]continue Run till next breakpoint.")); ldbLog(sdsnew("[l]list [line] List source code, around [line] if specified")); ldbLog(sdsnew(" you can use another arg for context size.")); ldbLog(sdsnew("[p]rint Show the value of the specified variable.")); -ldbLog(sdsnew("[b]eark Show all breakpoints.")); -ldbLog(sdsnew("[b]eark Add a breakpoint to the specified line.")); -ldbLog(sdsnew("[b]eark - Remove breakpoint from the specified line.")); -ldbLog(sdsnew("[b]eark 0 Remove all breakpoints.")); +ldbLog(sdsnew("[b]reak Show all breakpoints.")); +ldbLog(sdsnew("[b]reak Add a breakpoint to the specified line.")); +ldbLog(sdsnew("[b]reak - Remove breakpoint from the specified line.")); +ldbLog(sdsnew("[b]reak 0 Remove all breakpoints.")); ldbLog(sdsnew("[e]eval Execute some Lua code (in a different callframe).")); ldbLog(sdsnew("[r]edis Execute a Redis command.")); ldbLog(sdsnew(""));