From 77e1a2084f68f8c6cd99b8d7602ecf93864dd5df Mon Sep 17 00:00:00 2001 From: wuyangfan <1102042793@qq.com> Date: Sun, 17 May 2026 23:10:13 +0800 Subject: [PATCH] docs: fix FetchContent CMake command casing Use lowercase `include(FetchContent)` in cmake-integration.md. --- docs/cmake-integration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/cmake-integration.md b/docs/cmake-integration.md index e63e67f61b..29aeb4335b 100644 --- a/docs/cmake-integration.md +++ b/docs/cmake-integration.md @@ -47,7 +47,7 @@ above still works. Another possibility is to use [FetchContent](https://cmake.org/cmake/help/latest/module/FetchContent.html): ```cmake -Include(FetchContent) +include(FetchContent) FetchContent_Declare( Catch2