From e69f6e86292c1bcd0e85537a02987534ec039eb0 Mon Sep 17 00:00:00 2001 From: Sagar Vemuri Date: Wed, 7 Mar 2018 15:17:37 -0800 Subject: [PATCH] Fix API name in a comment in db.h Summary: ... so that people are not confused. Closes https://github.com/facebook/rocksdb/pull/3580 Differential Revision: D7187175 Pulled By: sagar0 fbshipit-source-id: bce70093d52e38cd24c9432fd708885d7c2c013e --- include/rocksdb/db.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/rocksdb/db.h b/include/rocksdb/db.h index c9ba467bc..b342a8172 100644 --- a/include/rocksdb/db.h +++ b/include/rocksdb/db.h @@ -826,7 +826,7 @@ class DB { // This function will wait until all currently running background processes // finish. After it returns, no background process will be run until - // UnblockBackgroundWork is called + // ContinueBackgroundWork is called virtual Status PauseBackgroundWork() = 0; virtual Status ContinueBackgroundWork() = 0;