summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSalvatore Sanfilippo <antirez@gmail.com>2017-11-28 18:41:28 +0100
committerGitHub <noreply@github.com>2017-11-28 18:41:28 +0100
commit26826329f530d068096796b8b972106f266eb738 (patch)
treee2680ee1bf4ad737b8e1e762e10af68bb79c80df
parent3508b9c44073e9fba47a57573e657471d13bd6dc (diff)
parent00954f4d48f1e2fa42dc2a4ae6090ec083996c11 (diff)
downloadredis-26826329f530d068096796b8b972106f266eb738.tar.gz
Merge pull request #4167 from charpty/wip-redisclic-typo2
redis-cli.c typo: Requets -> Requests.
-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 84eabf391..92cceddb8 100644
--- a/src/redis-cli.c
+++ b/src/redis-cli.c
@@ -2453,7 +2453,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);