summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSalvatore Sanfilippo <antirez@gmail.com>2014-06-06 11:19:21 +0200
committerSalvatore Sanfilippo <antirez@gmail.com>2014-06-06 11:19:21 +0200
commita2403227c7b164e546e53bf329c70caaadef2c14 (patch)
treec5b77922b55ae6e62bb96a8174bf14ccffbab437
parent113be48221ad07706a15f253657cc805acb8047a (diff)
parent94e3bb568ac2cb7763a1caab299337ed72149e4c (diff)
downloadredis-a2403227c7b164e546e53bf329c70caaadef2c14.tar.gz
Merge pull request #1772 from andygrunwald/typo-avarege-average
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);
}