]> git-server-git.apps.pok.os.sepia.ceph.com Git - rocksdb.git/commitdiff
Correct a comment in include/rocksdb/cache.h
authorYueh-Hsuan Chiang <yhchiang@fb.com>
Fri, 11 Dec 2015 00:39:10 +0000 (16:39 -0800)
committerYueh-Hsuan Chiang <yhchiang@fb.com>
Fri, 11 Dec 2015 00:39:10 +0000 (16:39 -0800)
Summary: Correct a comment in include/rocksdb/cache.h

Test Plan: No code change.

Reviewers: igor, sdong, IslamAbdelRahman, rven, kradhakrishnan, anthony

Reviewed By: anthony

Subscribers: dhruba, leveldb

Differential Revision: https://reviews.facebook.net/D51831

include/rocksdb/cache.h

index 4e4b0e19c0656ca18c9df0d7858b21063a5b7b05..47657b90a8d5e9d975e41bb9bd30228ae2725800 100644 (file)
@@ -45,7 +45,9 @@ class Cache {
   Cache() { }
 
   // Destroys all existing entries by calling the "deleter"
-  // function that was passed to the constructor.
+  // function that was passed via the Insert() function.
+  //
+  // @See Insert
   virtual ~Cache();
 
   // Opaque handle to an entry stored in the cache.