From 1400e58b0a54209935b921c9ba41e103ac31fdc5 Mon Sep 17 00:00:00 2001 From: A Gruber Date: Mon, 24 Jun 2019 13:32:29 +0000 Subject: [PATCH] fix typo in variables.md --- chapters/basics/variables.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chapters/basics/variables.md b/chapters/basics/variables.md index c5ec37b..0e8c497 100644 --- a/chapters/basics/variables.md +++ b/chapters/basics/variables.md @@ -78,7 +78,7 @@ set_target_properties(TargetName PROPERTIES CXX_STANDARD 11) ``` -The first form is more general, and can set multiple targets/files/tests at once, and has useful options. The second is a shortcut for setting several properties on one target. And you can get targets similarly: +The first form is more general, and can set multiple targets/files/tests at once, and has useful options. The second is a shortcut for setting several properties on one target. And you can get properties similarly: ```cmake get_property(ResultVariable TARGET TargetName PROPERTY CXX_STANDARD)