From a8ea638cdeeca22fffa917feab397c788a1d36d0 Mon Sep 17 00:00:00 2001 From: Augtons <79037928+Augtons@users.noreply.github.com> Date: Thu, 21 Dec 2023 18:30:57 +0800 Subject: [PATCH] cmake: correct the parameter annotation of idf_build_set_property The value parameter should be marked as [in] instead of [out], as it is used to set the property value, not to get it. --- tools/cmake/build.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/cmake/build.cmake b/tools/cmake/build.cmake index d86758cd158d..64358153530c 100644 --- a/tools/cmake/build.cmake +++ b/tools/cmake/build.cmake @@ -23,7 +23,7 @@ endfunction() # also added to the internal list of build properties if it isn't there already. # # @param[in] property the property to set the value of -# @param[out] value value of the property +# @param[in] value value of the property # # @param[in, optional] APPEND (option) append the value to the current value of the # property instead of replacing it