diff --git a/src/graph/GraphView.cpp b/src/graph/GraphView.cpp
index 2ed5a02a470e376da324e678e9875ac8bbe7b71f..df2177cf6910a3c40ef269d18bf148d60b5faa66 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());