From 4c1244d06d4f9c412813567e6d04b0195868d133 Mon Sep 17 00:00:00 2001 From: jiahui-97 Date: Tue, 10 May 2022 20:33:25 +0800 Subject: [PATCH] just fix a number Find a number wrong when reading SAHA paper and related code. --- src/Common/HashTable/HashTableKeyHolder.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Common/HashTable/HashTableKeyHolder.h b/src/Common/HashTable/HashTableKeyHolder.h index 41e0c01ffc6..d10ad093af6 100644 --- a/src/Common/HashTable/HashTableKeyHolder.h +++ b/src/Common/HashTable/HashTableKeyHolder.h @@ -14,7 +14,7 @@ * make a persistent copy of the key in each of the following cases: * 1) the aggregation method doesn't use temporary keys, so they're persistent * from the start; - * 1) the key is already present in the hash table; + * 2) the key is already present in the hash table; * 3) that particular key is stored by value, e.g. a short StringRef key in * StringHashMap. *