From 707c958f02148c74a1273c4a6d4742d57f5ade28 Mon Sep 17 00:00:00 2001 From: Bo Cai Date: Wed, 26 Jul 2017 21:49:42 +0800 Subject: [PATCH] redis-cli.c typo: conut -> count. Signed-off-by: Bo Cai --- src/redis-cli.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/redis-cli.c b/src/redis-cli.c index 61068483f..d708c5151 100644 --- a/src/redis-cli.c +++ b/src/redis-cli.c @@ -1574,7 +1574,7 @@ struct distsamples { * samples greater than the previous one, and is also the stop sentinel. * * "tot' is the total number of samples in the different buckets, so it - * is the SUM(samples[i].conut) for i to 0 up to the max sample. + * is the SUM(samples[i].count) for i to 0 up to the max sample. * * As a side effect the function sets all the buckets count to 0. */ void showLatencyDistSamples(struct distsamples *samples, long long tot) {