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:04 +0200
commit6ab4775a2a69188dc6f6594c20bf9137c7671f28 (patch)
tree4162b618a43d7348473753ff5b3a3d9441ea8c55
parentb98ee12f61ce16b0ad284c0d5d00d3bc09adbef0 (diff)
downloadredis-6ab4775a2a69188dc6f6594c20bf9137c7671f28.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 669d9a30d..0643efa32 100644
--- a/src/redis-cli.c
+++ b/src/redis-cli.c
@@ -1831,7 +1831,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);
}