summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBo Cai <charpty@gmail.com>2017-07-26 21:33:29 +0800
committerBo Cai <charpty@gmail.com>2017-07-26 21:33:29 +0800
commit00954f4d48f1e2fa42dc2a4ae6090ec083996c11 (patch)
treec1a5b972205635180e6cad76b8271e5a51d00c11
parentdc997755bf8c2d69899957a8ab6dc41aed0c7ddb (diff)
downloadredis-00954f4d48f1e2fa42dc2a4ae6090ec083996c11.tar.gz
redis-cli.c typo: Requets -> Requests.
Signed-off-by: Bo Cai <charpty@gmail.com>
-rw-r--r--src/redis-cli.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/redis-cli.c b/src/redis-cli.c
index 61068483f..d4d9d6311 100644
--- a/src/redis-cli.c
+++ b/src/redis-cli.c
@@ -2364,7 +2364,7 @@ static void statMode(void) {
sprintf(buf,"%ld",aux);
printf("%-8s",buf);
- /* Requets */
+ /* Requests */
aux = getLongInfoField(reply->str,"total_commands_processed");
sprintf(buf,"%ld (+%ld)",aux,requests == 0 ? 0 : aux-requests);
printf("%-19s",buf);