Skip to content

Commit a9ffaeb

Browse files
Fixed small typos
Signed-off-by: Vinícius Ferrão <[email protected]>
1 parent d19d892 commit a9ffaeb

File tree

6 files changed

+11
-10
lines changed

6 files changed

+11
-10
lines changed

README.md

+6-5
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ It includes
1919

2020
* a basic CLI example
2121
* examples for fuzz, unit, and constexpr testing
22-
* large github action testing matrix
22+
* large GitHub action testing matrix
2323

2424
It requires
2525

@@ -32,15 +32,16 @@ This project gets you started with a simple example of using FTXUI, which happen
3232

3333
## Getting Started
3434

35-
### Use the Github template
35+
### Use the GitHub template
3636
First, click the green `Use this template` button near the top of this page.
37-
This will take you to Github's ['Generate Repository'](https://github.com/cpp-best-practices/cmake_template/generate) page.
37+
This will take you to GitHub's ['Generate Repository'](https://github.com/cpp-best-practices/cmake_template/generate)
38+
page.
3839
Fill in a repository name and short description, and click 'Create repository from template'.
39-
This will allow you to create a new repository in your Github account,
40+
This will allow you to create a new repository in your GitHub account,
4041
prepopulated with the contents of this project.
4142

4243
After creating the project please wait until the cleanup workflow has finished
43-
setting up your project and commited the changes.
44+
setting up your project and committed the changes.
4445

4546
Now you can clone the project locally and get to work!
4647

README_dependencies.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Note about install commands:
44
- for Windows, we use [choco](https://chocolatey.org/install).
5-
- for MacOS, we use [brew](https://brew.sh/).
5+
- for macOS, we use [brew](https://brew.sh/).
66
- In case of an error in cmake, make sure that the dependencies are on the PATH.
77

88

cmake/Cuda.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ macro(myproject_target_link_cuda target)
4242
if(WIN32 AND "$ENV{VSCMD_VER}" STREQUAL "")
4343
message(
4444
WARNING
45-
"Compiling Cuda on Windows outside the Visual Studio Commant prompt or without running `vcvarsall.bat x64` probably fails"
45+
"Compiling CUDA on Windows outside the Visual Studio Command prompt or without running `vcvarsall.bat x64` probably fails"
4646
)
4747
endif()
4848
endmacro()

cmake/Utilities.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# find a subtring from a string by a given prefix such as VCVARSALL_ENV_START
1+
# find a substring from a string by a given prefix such as VCVARSALL_ENV_START
22
function(
33
find_substring_by_prefix
44
output

cmake/VCEnvironment.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ macro(detect_architecture)
1919
set(VCVARSALL_ARCH ${CMAKE_HOST_SYSTEM_PROCESSOR})
2020
else()
2121
set(VCVARSALL_ARCH x64)
22-
message(STATUS "Unkown architecture CMAKE_SYSTEM_PROCESSOR: ${CMAKE_SYSTEM_PROCESSOR_LOWER} - using x64")
22+
message(STATUS "Unknown architecture CMAKE_SYSTEM_PROCESSOR: ${CMAKE_SYSTEM_PROCESSOR_LOWER} - using x64")
2323
endif()
2424
endif()
2525
endmacro()

test/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ if(PROJECT_IS_TOP_LEVEL OR TEST_INSTALLED_VERSION)
1010
find_package(myproject CONFIG REQUIRED) # for intro, project_options, ...
1111

1212
if(NOT TARGET myproject_options)
13-
message(FATAL_ERROR "Requiered config package not found!")
13+
message(FATAL_ERROR "Required config package not found!")
1414
return() # be strictly paranoid for Template Janitor github action! CK
1515
endif()
1616
endif()

0 commit comments

Comments
 (0)