diff options
author | Kevin Albertson <kevin.eric.albertson@gmail.com> | 2023-12-31 01:30:20 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2024-01-05 18:21:08 (GMT) |
commit | da22b269b2a9242efe28b6961508373a5aaccf2b (patch) | |
tree | 036745cdced1a390635bd976fd83db5c3b2fedfc /Help/guide/tutorial | |
parent | 76b585ecc8b0456818d3c8ccf32699de27d50717 (diff) | |
download | CMake-da22b269b2a9242efe28b6961508373a5aaccf2b.zip CMake-da22b269b2a9242efe28b6961508373a5aaccf2b.tar.gz CMake-da22b269b2a9242efe28b6961508373a5aaccf2b.tar.bz2 |
Tutorial: Add missing `$` in generator expression
Diffstat (limited to 'Help/guide/tutorial')
-rw-r--r-- | Help/guide/tutorial/Adding Generator Expressions.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Help/guide/tutorial/Adding Generator Expressions.rst b/Help/guide/tutorial/Adding Generator Expressions.rst index 910eacb..d2dddf7 100644 --- a/Help/guide/tutorial/Adding Generator Expressions.rst +++ b/Help/guide/tutorial/Adding Generator Expressions.rst @@ -24,7 +24,7 @@ Logical, Informational, and Output expressions. Logical expressions are used to create conditional output. The basic expressions are the ``0`` and ``1`` expressions. A ``$<0:...>`` results in the -empty string, and ``<1:...>`` results in the content of ``...``. They can also +empty string, and ``$<1:...>`` results in the content of ``...``. They can also be nested. Exercise 1 - Adding Compiler Warning Flags with Generator Expressions |