From faebc336da211a9815e19c4a18f79f30dece2111 Mon Sep 17 00:00:00 2001 From: "kim.sanghyun" Date: Thu, 26 Dec 2019 11:12:49 -0800 Subject: [PATCH] Fixed spelling in function comments (#6248) Summary: meareTime() -> measureTime() Pull Request resolved: https://github.com/facebook/rocksdb/pull/6248 Differential Revision: D19231406 Pulled By: riversand963 fbshipit-source-id: 20de4a43a5478b4a3e7853e1fb70b09ccadbf985 --- include/rocksdb/statistics.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/rocksdb/statistics.h b/include/rocksdb/statistics.h index b6b78ef99..10acbbbf8 100644 --- a/include/rocksdb/statistics.h +++ b/include/rocksdb/statistics.h @@ -506,7 +506,7 @@ class Statistics { virtual void recordInHistogram(uint32_t histogramType, uint64_t time) { // measureTime() is the old and inaccurate function name. // To keep backward compatible. If users implement their own - // statistics, which overrides meareTime() but doesn't override + // statistics, which overrides measureTime() but doesn't override // this function. We forward to measureTime(). measureTime(histogramType, time); } -- GitLab