spelling fixes

This commit is contained in:
Karl Nilsson
2020-01-17 19:48:14 -05:00
parent 4c671bdbee
commit f1f7c85d95
20 changed files with 29 additions and 29 deletions

View File

@@ -6,7 +6,7 @@ toc::[]
# Introduction
This example shows a common method to set the C++ Standard. This can be used with most versions of CMake. However, if you are targetting a recent version of CMake there are more convenient methods available.
This example shows a common method to set the C++ Standard. This can be used with most versions of CMake. However, if you are targeting a recent version of CMake there are more convenient methods available.
The files in this tutorial are below:

View File

@@ -9,7 +9,7 @@ project (hello_cpp11)
# Add an executable
add_executable(hello_cpp11 main.cpp)
# set the C++ standard to the approriate standard for using auto
# set the C++ standard to the appropriate standard for using auto
target_compile_features(hello_cpp11 PUBLIC cxx_auto_type)
# Print the list of known compile features for this version of CMake