diff --git a/include/aidge/graph/GraphView.hpp b/include/aidge/graph/GraphView.hpp index 39e18a87abd52618722956c1d845f02fa89348ef..7a2b4bac008a82d0454a6dd057d8bf78c7605926 100644 --- a/include/aidge/graph/GraphView.hpp +++ b/include/aidge/graph/GraphView.hpp @@ -323,11 +323,11 @@ public: /** * @brief Insert a node (newParentNode) as a parent of the passed node (childNode). * - * @param childNode - * @param newParentNode - * @param childInputTensorIdx - * @param newParentInputTensorIdx - * @param newParentOutputTensorIdx + * @param childNode Node that gets a new parent. + * @param newParentNode Inserted Node. + * @param childInputTensorIdx Index of the input Tensor for the childNode linked to the inserted Node output. + * @param newParentInputTensorIdx Index of the input Tensor for the newParentNode linked to the former parent of childNode. + * @param newParentOutputTensorIdx Index of the output Tensor for the newParentNode linked to the childNode's input Tensor. */ void insertParent(NodePtr childNode, NodePtr newParentNode,