summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Grunwald <andygrunwald@gmail.com>2014-05-22 20:01:12 +0200
committerantirez <antirez@gmail.com>2014-06-06 11:20:00 +0200
commit531e577e2d5b0644d7c11ed8d3f5f958b32bb187 (patch)
treee33d3738af575458a00b213c4724f6d27b2ff894
parenteca41f48d3612f8ea551aa37060968d87ddab1b3 (diff)
downloadredis-531e577e2d5b0644d7c11ed8d3f5f958b32bb187.tar.gz
Fixed typo in word avarege in result message of --intrinsic-latency analyzer
-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 58c15da42..b8e17d24e 100644
--- a/src/redis-cli.c
+++ b/src/redis-cli.c
@@ -1832,7 +1832,7 @@ static void intrinsicLatencyMode(void) {
if (end > test_end) {
printf("\n%lld total runs (avg %lld microseconds per run).\n",
runs, run_time/runs);
- printf("Worst run took %.02fx times the avarege.\n",
+ printf("Worst run took %.02fx times the average.\n",
(double) max_latency / (run_time/runs));
exit(0);
}