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)