From 6e4006ec07800ae8b17b40ca47e4225d2bf13d64 Mon Sep 17 00:00:00 2001 From: Duncan Ogilvie Date: Tue, 25 Oct 2022 00:59:49 +0200 Subject: [PATCH] Fix typo in the docs --- docs/cmake-toml.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/cmake-toml.md b/docs/cmake-toml.md index 86a6b4a..99e1f60 100644 --- a/docs/cmake-toml.md +++ b/docs/cmake-toml.md @@ -44,8 +44,8 @@ You can specify your own conditions and use them in any `condition` field: ```toml [conditions] -arch64 = "CMAKE_SIZEOF_VOID_P EQUALS 8" -arch32 = "CMAKE_SIZEOF_VOID_P EQUALS 4" +arch64 = "CMAKE_SIZEOF_VOID_P EQUAL 8" +arch32 = "CMAKE_SIZEOF_VOID_P EQUAL 4" ``` This will make the `arch64` and `arch32` conditions available with their respective CMake expressions.