From c3401846ef334ab06f9f36d0a3252005b96b7991 Mon Sep 17 00:00:00 2001 From: Agam Brahma Date: Sat, 3 Feb 2018 18:25:28 -0800 Subject: [PATCH] Minor typo in comment (s/pro/pri) Summary: Closes https://github.com/facebook/rocksdb/pull/3460 Differential Revision: D6895365 Pulled By: miasantreble fbshipit-source-id: 04f633d1971b1f542ac28118b738ceb0242a0228 --- cache/lru_cache.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cache/lru_cache.h b/cache/lru_cache.h index 38491ee52..b325fb4cf 100644 --- a/cache/lru_cache.h +++ b/cache/lru_cache.h @@ -57,7 +57,7 @@ struct LRUHandle { // Include the following flags: // in_cache: whether this entry is referenced by the hash table. // is_high_pri: whether this entry is high priority entry. - // in_high_pro_pool: whether this entry is in high-pri pool. + // in_high_pri_pool: whether this entry is in high-pri pool. char flags; uint32_t hash; // Hash of key(); used for fast sharding and comparisons