From ec124c7ac1a5559b5e0b246b34595b3a8aa6599c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20K=C3=A4mmerling?= Date: Tue, 1 Dec 2020 07:05:50 +0100 Subject: [PATCH] Fix histogram exponentialBuckets typo (#30) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Lukas Kämmerling --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9af713fc..fe127cd5 100644 --- a/README.md +++ b/README.md @@ -103,7 +103,7 @@ Eg: Histogram::exponentialBuckets(0.05, 1.5, 10); ``` -This will start your buckets with a value of 1.5, grow them by a factor of 1.5 per bucket across a set of 10 buckets. +This will start your buckets with a value of 0.05, grow them by a factor of 1.5 per bucket across a set of 10 buckets. Also look at the [examples](examples).