This is an automated email from the ASF dual-hosted git repository.

torwig pushed a commit to branch fix_typos_cmake
in repository https://gitbox.apache.org/repos/asf/incubator-kvrocks.git

commit 78c3aa0fc209d80ad8d587b53725c974449f7d47
Author: Yaroslav Stepanchuk <[email protected]>
AuthorDate: Wed Jun 14 18:01:26 2023 +0300

    Fix a few typos in CMakeLists.txt
---
 CMakeLists.txt | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index fe1fa78e..a538029a 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -17,13 +17,13 @@
 
 cmake_minimum_required(VERSION 3.16)
 project(kvrocks
-        DESCRIPTION "NoSQL which based on rocksdb and compatible with the 
Redis protocol"
+        DESCRIPTION "NoSQL which is based on RocksDB and compatible with the 
Redis protocol"
         LANGUAGES CXX)
 
 option(DISABLE_JEMALLOC "disable use of the jemalloc library" OFF)
-option(ENABLE_ASAN "enable address santinizer" OFF)
-option(ENABLE_TSAN "enable thread santinizer" OFF)
-option(ASAN_WITH_LSAN "enable leak santinizer while address santinizer is 
enabled" ON)
+option(ENABLE_ASAN "enable address sanitizer" OFF)
+option(ENABLE_TSAN "enable thread sanitizer" OFF)
+option(ASAN_WITH_LSAN "enable leak sanitizer while address sanitizer is 
enabled" ON)
 option(ENABLE_STATIC_LIBSTDCXX "link kvrocks with static library of libstd++ 
instead of shared library" ON)
 option(USE_LUAJIT "use luaJIT instead of lua" ON)
 option(ENABLE_OPENSSL "enable openssl to support tls connection" OFF)
@@ -92,7 +92,7 @@ endif()
 
 set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
 
-# GLIBC < 2.17 should explict specify the real time library when use clock_*
+# GLIBC < 2.17 should explicitly specify the real-time library when using 
clock_*
 find_library(REALTIME_LIB rt)
 if (REALTIME_LIB)
     list(APPEND EXTERNAL_LIBS PRIVATE rt)

Reply via email to