From 73bc9f90d9baa623da516e88592d5e7ad55b9c0a Mon Sep 17 00:00:00 2001
From: Maxence Naud <maxence.naud@cea.fr>
Date: Thu, 18 Apr 2024 09:44:08 +0000
Subject: [PATCH] Apply 1 suggestion(s) to 1 file(s)

---
 src/graph/GraphView.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/graph/GraphView.cpp b/src/graph/GraphView.cpp
index 2ed5a02a4..df2177cf6 100644
--- a/src/graph/GraphView.cpp
+++ b/src/graph/GraphView.cpp
@@ -408,7 +408,7 @@ bool Aidge::GraphView::forwardDims(const std::vector<std::vector<Aidge::DimSize_
         for (IOIndex_t i = 0; i < nodePtr->nbInputs(); ++i) {
             std::pair<std::shared_ptr<Node>, IOIndex_t> inputI = nodePtr->input(i);
             if (inputI.first) {
-                // Check that tensors are properly connected...
+                // Check that associated Data are properly connected...
                 AIDGE_ASSERT(nodePtr->getOperator()->getRawInput(i) == inputI.first->getOperator()->getRawOutput(inputI.second),
                   "Input#{} for node {} ({}) is not properly connected to output#{} of node {} ({}): Data or Tensor mismatch!",
                     i, nodePtr->name(), nodePtr->type(), inputI.second, inputI.first->name(), inputI.first->type());
-- 
GitLab