diff --git a/include/aidge/graph/GraphView.hpp b/include/aidge/graph/GraphView.hpp
index 383575f1b8493d76a1e17439d16917b9869ce66a..74934277302ca04ce35d667b36cfaf31374a3462 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>>
      */