From e6036c9479b0d24541e5701e978d340fa870ee77 Mon Sep 17 00:00:00 2001 From: Derek Huang Date: Mon, 16 Dec 2024 03:29:22 -0500 Subject: [PATCH] quickstart-cmake.md: fix typo in comment --- docs/quickstart-cmake.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/quickstart-cmake.md b/docs/quickstart-cmake.md index 1380168a..21b6aa77 100644 --- a/docs/quickstart-cmake.md +++ b/docs/quickstart-cmake.md @@ -76,7 +76,7 @@ set(CMAKE_CXX_STANDARD 14) set(CMAKE_CXX_STANDARD_REQUIRED ON) # Since CMake 3.20 CONFIG can be omitted as the FindGTest find module will -# prefer the upstream (provided by Google Test) GTestConfig.cmake is available +# prefer the upstream (provided by Google Test) GTestConfig.cmake if available find_package(GTest 1.15.0 REQUIRED CONFIG) ```