From 9ea12add30288f094f65f70974298de9efc415cf Mon Sep 17 00:00:00 2001
From: Octave Perrin <operrin@lrtechnologies.fr>
Date: Tue, 5 Nov 2024 10:28:16 +0100
Subject: [PATCH] continuation

---
 include/aidge/graph/GraphView.hpp | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/include/aidge/graph/GraphView.hpp b/include/aidge/graph/GraphView.hpp
index 383575f1b..749342773 100644
--- a/include/aidge/graph/GraphView.hpp
+++ b/include/aidge/graph/GraphView.hpp
@@ -115,7 +115,6 @@ public:
 
     /**
      * @brief Set the GraphView name.
-     * @warning Undefined behaviour when several GraphViews have the same name. @todo to check if still true as it is a copy paste from Node
      * @param name New name for the GraphView.
      */
     inline void setName(const std::string &name) { mName = name; }
@@ -249,7 +248,7 @@ public:
     std::vector<std::pair<NodePtr, IOIndex_t>> inputs() const;
 
     /** @todo having two inputs function, one without args that treat graph's inpput and one with args treating a node's input is fishy
-    * @TODO @warning what if the node isn't found? where is the try catch of the .at?
+     * @TODO @warning what if the node isn't found? where is the try catch of the .at?
      * @brief List all input connections (within and outside) of the specified GraphView node named "name".
      * @return std::vector<std::pair<NodePtr, IOIndex_t>>
      */
-- 
GitLab