From 91a829303b8a9aee780ddcd41e2065a8d428356d Mon Sep 17 00:00:00 2001 From: cmoineau <cyril.moineau@cea.fr> Date: Fri, 1 Mar 2024 12:45:06 +0000 Subject: [PATCH] Fix GenericOp docstring. --- include/aidge/operator/GenericOperator.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/aidge/operator/GenericOperator.hpp b/include/aidge/operator/GenericOperator.hpp index c315e671c..20b0cdc4a 100644 --- a/include/aidge/operator/GenericOperator.hpp +++ b/include/aidge/operator/GenericOperator.hpp @@ -110,8 +110,8 @@ public: * @brief Fictive custom operator not associated with any implementation. * Allows to import unknown operators and simulate new ones. * @param type Type of the fictive operator. - * @param nbDataIn Number of input data. - * @param nbIn Number input data + number of learnt parameters. + * @param nbData Number of input data. + * @param nbParam Number of parameters. * @param nbOut Number of output data. * @param name (optional) name of the Operator. * @return std::shared_ptr<Node> Node associated with the Generic Operator. -- GitLab