From bca17bcd29e98c2bad44cf31115b9a088bfaaa76 Mon Sep 17 00:00:00 2001 From: Denis Barucic Date: Fri, 30 Jan 2026 10:38:17 +0100 Subject: [PATCH] Fix typo in logger.hpp I believe this was just a copy-paste error. --- modules/core/include/opencv2/core/utils/logger.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/core/include/opencv2/core/utils/logger.hpp b/modules/core/include/opencv2/core/utils/logger.hpp index c58b0ccf6a..6c33d6d248 100644 --- a/modules/core/include/opencv2/core/utils/logger.hpp +++ b/modules/core/include/opencv2/core/utils/logger.hpp @@ -68,7 +68,7 @@ CV_EXPORTS void replaceWriteLogMessage(WriteLogMessageFuncType f); /** * @brief Replaces the OpenCV writeLogMessageEx function with a user-defined function. - * @note The user-defined function must have the same signature as writeLogMessage. + * @note The user-defined function must have the same signature as writeLogMessageEx. * @note The user-defined function must accept arguments that can be potentially null. * @note The user-defined function must be thread-safe, as OpenCV logging may be called * from multiple threads.