From 3973b06df5ac35ea86061329d971bac8ee69ac6d Mon Sep 17 00:00:00 2001 From: Itamar Haber Date: Sat, 19 Dec 2015 17:01:20 +0200 Subject: [PATCH] Typo fix --- src/scripting.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/scripting.c b/src/scripting.c index e6a91908e..ab346c7b4 100644 --- a/src/scripting.c +++ b/src/scripting.c @@ -2262,8 +2262,8 @@ ldbLog(sdsnew(" mode dataset changes will be retained.")); ldbLog(sdsnew("")); ldbLog(sdsnew("Debugger functions you can call from Lua scripts:")); ldbLog(sdsnew("redis.debug() Produce logs in the debugger console.")); -ldbLog(sdsnew("redis.breakpoint() Stop execution like if there was a breakpoing.")); -ldbLog(sdsnew(" in the next line of code.")); +ldbLog(sdsnew("redis.breakpoint() Stop execution like if there was a breakpoint in the")); +ldbLog(sdsnew(" next line of code.")); ldbSendLogs(); } else if (!strcasecmp(argv[0],"s") || !strcasecmp(argv[0],"step") || !strcasecmp(argv[0],"n") || !strcasecmp(argv[0],"next")) {