diff options
author | antirez <antirez@gmail.com> | 2014-07-11 10:57:28 +0200 |
---|---|---|
committer | antirez <antirez@gmail.com> | 2014-07-11 10:57:28 +0200 |
commit | 6382936ebcffb893e6f404bdafb058ed3150f8ec (patch) | |
tree | 4f96952fa355e7fe8a78d511f8f14d29daa1aaba | |
parent | 3bf72d0d5fb032e7d4b6beaaae8b70b2cb23fa6b (diff) | |
download | redis-6382936ebcffb893e6f404bdafb058ed3150f8ec.tar.gz |
Fix typo in LATENCY DOCTOR output.
-rw-r--r-- | src/latency.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/latency.c b/src/latency.c index 0900dcc54..fdc88210e 100644 --- a/src/latency.c +++ b/src/latency.c @@ -368,7 +368,7 @@ sds createLatencyReport(void) { } if (advise_slowlog_inspect) { - report = sdscat(report,"- Check your Slow Log to understand what are the commads you are running which are too slow to execute. Please check http://redis.io/commands/slowlog for more information.\n"); + report = sdscat(report,"- Check your Slow Log to understand what are the commands you are running which are too slow to execute. Please check http://redis.io/commands/slowlog for more information.\n"); } /* Intrinsic latency. */ |