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(""));