Skip to content

Commit

Permalink
Merge pull request #53 from viniciusferrao/fix_typos
Browse files Browse the repository at this point in the history
Fixed small typos
  • Loading branch information
lefticus authored Mar 18, 2024
2 parents d19d892 + a9ffaeb commit ae33e44
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 10 deletions.
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ It includes

* a basic CLI example
* examples for fuzz, unit, and constexpr testing
* large github action testing matrix
* large GitHub action testing matrix

It requires

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

## Getting Started

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

After creating the project please wait until the cleanup workflow has finished
setting up your project and commited the changes.
setting up your project and committed the changes.

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

Expand Down
2 changes: 1 addition & 1 deletion README_dependencies.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

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


Expand Down
2 changes: 1 addition & 1 deletion cmake/Cuda.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ macro(myproject_target_link_cuda target)
if(WIN32 AND "$ENV{VSCMD_VER}" STREQUAL "")
message(
WARNING
"Compiling Cuda on Windows outside the Visual Studio Commant prompt or without running `vcvarsall.bat x64` probably fails"
"Compiling CUDA on Windows outside the Visual Studio Command prompt or without running `vcvarsall.bat x64` probably fails"
)
endif()
endmacro()
2 changes: 1 addition & 1 deletion cmake/Utilities.cmake
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# find a subtring from a string by a given prefix such as VCVARSALL_ENV_START
# find a substring from a string by a given prefix such as VCVARSALL_ENV_START
function(
find_substring_by_prefix
output
Expand Down
2 changes: 1 addition & 1 deletion cmake/VCEnvironment.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ macro(detect_architecture)
set(VCVARSALL_ARCH ${CMAKE_HOST_SYSTEM_PROCESSOR})
else()
set(VCVARSALL_ARCH x64)
message(STATUS "Unkown architecture CMAKE_SYSTEM_PROCESSOR: ${CMAKE_SYSTEM_PROCESSOR_LOWER} - using x64")
message(STATUS "Unknown architecture CMAKE_SYSTEM_PROCESSOR: ${CMAKE_SYSTEM_PROCESSOR_LOWER} - using x64")
endif()
endif()
endmacro()
Expand Down
2 changes: 1 addition & 1 deletion test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ if(PROJECT_IS_TOP_LEVEL OR TEST_INSTALLED_VERSION)
find_package(myproject CONFIG REQUIRED) # for intro, project_options, ...

if(NOT TARGET myproject_options)
message(FATAL_ERROR "Requiered config package not found!")
message(FATAL_ERROR "Required config package not found!")
return() # be strictly paranoid for Template Janitor github action! CK
endif()
endif()
Expand Down

0 comments on commit ae33e44

Please sign in to comment.