From 0deebe09a703e8166e414e06f4be31b03f580758 Mon Sep 17 00:00:00 2001 From: LinZhihao-723 Date: Fri, 6 Dec 2024 00:32:31 -0500 Subject: [PATCH] Update comment --- src/clp_ffi_py/PyObjectCast.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/clp_ffi_py/PyObjectCast.hpp b/src/clp_ffi_py/PyObjectCast.hpp index ac035e9..1da0f14 100644 --- a/src/clp_ffi_py/PyObjectCast.hpp +++ b/src/clp_ffi_py/PyObjectCast.hpp @@ -62,7 +62,7 @@ struct IsPythonObject { }; /** - * This template const expression is a wrapper of underlying `cValue` stored in `is_python_object`, + * This template const expression is a wrapper of underlying `cValue` stored in `IsPythonObject`, * which is used to determine whether a type T is a valid Python object type. * @tparam T */ @@ -70,7 +70,7 @@ template // NOLINTNEXTLINE(readability-identifier-naming) constexpr bool is_python_object_v{IsPythonObject::cValue}; /** - * The macro to create a specialization of is_python_object for a given type T. Only types that are + * The macro to create a specialization of `IsPythonObject` for a given type T. Only types that are * marked with this macro will be considered as a valid Python object type. */ // NOLINTNEXTLINE(cppcoreguidelines-macro-usage)