From 9df2ea192f0ca5fcbc78bf284a4d3bc55103c2c8 Mon Sep 17 00:00:00 2001 From: murmur-wheel Date: Sun, 16 Feb 2020 13:02:13 +0800 Subject: [PATCH] fix a typo. --- 01-basic/L-cpp-standard/i-common-method/README.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01-basic/L-cpp-standard/i-common-method/README.adoc b/01-basic/L-cpp-standard/i-common-method/README.adoc index ac0c5d2..990bd04 100644 --- a/01-basic/L-cpp-standard/i-common-method/README.adoc +++ b/01-basic/L-cpp-standard/i-common-method/README.adoc @@ -34,7 +34,7 @@ include(CheckCXXCompilerFlag) CHECK_CXX_COMPILER_FLAG("-std=c++11" COMPILER_SUPPORTS_CXX11) ---- -This example will attempt to compile a program with the flag `=std=c++11` and store the result in the variable `COMPILER_SUPPORTS_CXX11`. +This example will attempt to compile a program with the flag `-std=c++11` and store the result in the variable `COMPILER_SUPPORTS_CXX11`. The line `include(CheckCXXCompilerFlag)` tells CMake to include this function to make it available for use.