Skip to content

Commit cca1658

Browse files
committed
chore(cmake): reword some comments
Signed-off-by: Frederic Pillon <[email protected]>
1 parent 76ed62c commit cca1658

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: cmake/templates/easy_cmake.cmake

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ list(APPEND CMAKE_MODULE_PATH {{"${CORE_PATH}"}}/cmake)
2020
set(CMAKE_TOOLCHAIN_FILE toolchain)
2121

2222

23-
# You may remove this block when using this file as the sketch's CMakeLists.txt
23+
# This block can be removed when using this file as the sketch's CMakeLists.txt
2424
if (NOT ${CMAKE_PARENT_LIST_FILE} STREQUAL ${CMAKE_CURRENT_LIST_FILE})
25-
# When we are imported from the main CMakeLists.txt, we should stop here
25+
# When imported from the main CMakeLists.txt, it should stop here
2626
# not to interfere with the true build config.
2727
return()
2828
endif()
@@ -62,7 +62,7 @@ overall_settings(
6262
# STEP 3: configure your sketch
6363
# -----------------------------------------------------------------------------
6464
include(external_library)
65-
# I cannot tell the dependencies of the library ahead-of-time
65+
# Cannot tell the dependencies of the library ahead-of-time
6666
# Please write them in using the DEPENDS ... clause
6767
# The same directives apply as for `build_sketch()` just below.
6868
{% for libdir in libs | sort %}

0 commit comments

Comments
 (0)