diff options
| author | Stefan Boberg <[email protected]> | 2021-05-23 17:11:20 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2021-05-23 17:11:20 +0200 |
| commit | 22e910f53bf56998aa24e00e39ee187db8400041 (patch) | |
| tree | 0ed5a1a839a1428c6cc2c260c9088d467f532397 | |
| parent | Changed to tsl::robin_map (diff) | |
| download | zen-22e910f53bf56998aa24e00e39ee187db8400041.tar.xz zen-22e910f53bf56998aa24e00e39ee187db8400041.zip | |
Tiny comment fix
| -rw-r--r-- | zenstore/include/zenstore/CAS.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zenstore/include/zenstore/CAS.h b/zenstore/include/zenstore/CAS.h index 8b9a66e3f..9c569f2aa 100644 --- a/zenstore/include/zenstore/CAS.h +++ b/zenstore/include/zenstore/CAS.h @@ -23,7 +23,7 @@ struct CasStoreConfiguration // Threshold below which values are considered 'tiny' and managed using the 'tiny values' strategy uint64_t TinyValueThreshold = 1024; - // Threshold above which values are considered 'tiny' and managed using the 'huge values' strategy + // Threshold above which values are considered 'huge' and managed using the 'huge values' strategy uint64_t HugeValueThreshold = 1024 * 1024; }; |