From c61247bdc9500f88cc6e1d91d5a0b588dc4687ce Mon Sep 17 00:00:00 2001 From: Dirk Stolle Date: Thu, 1 Dec 2022 21:06:00 +0100 Subject: [PATCH] Fix a small typo (#44, thanks @striezel) [skip ci] --- example/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/CMakeLists.txt b/example/CMakeLists.txt index 08065e3..6a614b4 100644 --- a/example/CMakeLists.txt +++ b/example/CMakeLists.txt @@ -61,7 +61,7 @@ else() message( STATUS "Matched: nothing") endif() -# Function to emulate ternary operaton `result = b ? x : y`: +# Function to emulate ternary operation `result = b ? x : y`: macro( ternary var boolean value1 value2 ) if( ${boolean} )