From 07178689c36c0941d6a5a9302e12c499350a40d7 Mon Sep 17 00:00:00 2001 From: darionyaphet Date: Mon, 14 Aug 2023 16:08:20 +0800 Subject: [PATCH] fix typo --- include/leveldb/comparator.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/leveldb/comparator.h b/include/leveldb/comparator.h index a85b51e..f1dea43 100644 --- a/include/leveldb/comparator.h +++ b/include/leveldb/comparator.h @@ -14,7 +14,7 @@ namespace leveldb { class Slice; // A Comparator object provides a total order across slices that are -// used as keys in an sstable or a database. A Comparator implementation +// used as keys in a sstable or a database. A Comparator implementation // must be thread-safe since leveldb may invoke its methods concurrently // from multiple threads. class LEVELDB_EXPORT Comparator {