From bae707f6fb0ffc6c813f4e644e83441d475f49ea Mon Sep 17 00:00:00 2001
From: NAUD Maxence <maxence.naud@cea.fr>
Date: Wed, 9 Aug 2023 14:27:47 +0000
Subject: [PATCH] [Doc] Change comment that was not relevant

---
 include/aidge/graph/Node.hpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/aidge/graph/Node.hpp b/include/aidge/graph/Node.hpp
index 8c0216e5d..0780ce9a2 100644
--- a/include/aidge/graph/Node.hpp
+++ b/include/aidge/graph/Node.hpp
@@ -41,7 +41,7 @@ private:
           auto sharedB = b.lock();
           if (!sharedB) return false; // nothing after expired pointer 
           if (!sharedA) return true;
-          return sharedA < sharedB; // Assuming GraphView has a valid comparison operator
+          return sharedA < sharedB; // shared_ptr has a valid comparison operator
       }
   };
   std::string mName; /** Name of the Node. Should be unique. */
@@ -402,4 +402,4 @@ private:
 };
 } // namespace Aidge
 
-#endif /* __AIDGE_CORE_GRAPH_NODE_H__ */
\ No newline at end of file
+#endif /* __AIDGE_CORE_GRAPH_NODE_H__ */
-- 
GitLab