Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FreeRTOS/FreeRTOS-Kernel.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid J. Fiddes <35607151+davefiddes@users.noreply.github.com>2023-01-23 20:16:24 +0300
committerGitHub <noreply@github.com>2023-01-23 20:16:24 +0300
commit260a37c082f4b70f9c6f361eadb0b29f1a448e3a (patch)
treea3e572e5edc8bb7136790b345e4920175115d6d5 /README.md
parent78319fd17ed8256b93ce91251d1bdd4907940b52 (diff)
Fix some CMake documentation typos (#616)
The quick start instructions for CMake mention the "master" git branch which has been replaced by "main" in the current repo. The main CMakeLists.txt documents how to integrate a custom port. Fix a typo in the suggested CMake code.
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 567487242..025a13577 100644
--- a/README.md
+++ b/README.md
@@ -19,7 +19,7 @@ Add the following into your project's main or a subdirectory's `CMakeLists.txt`:
```cmake
FetchContent_Declare( freertos_kernel
GIT_REPOSITORY https://github.com/FreeRTOS/FreeRTOS-Kernel.git
- GIT_TAG master #Note: Best practice to use specific git-hash or tagged version
+ GIT_TAG main #Note: Best practice to use specific git-hash or tagged version
)
```