From 15db022f0836edded86827fd34a9f1fff29e3581 Mon Sep 17 00:00:00 2001
From: thibault allenet <thibault.allenet@cea.fr>
Date: Wed, 30 Aug 2023 08:13:49 +0000
Subject: [PATCH] Update Database.hpp comments to have links

---
 include/aidge/data/Database.hpp | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/include/aidge/data/Database.hpp b/include/aidge/data/Database.hpp
index 6b22bdef6..96292f242 100644
--- a/include/aidge/data/Database.hpp
+++ b/include/aidge/data/Database.hpp
@@ -8,8 +8,8 @@
 namespace Aidge{
 
 /**
- * @brief Database. An abstract class representing a database. All databases should inherit from this class. All subclasses should overwrite ```get_item()``` to fetch data from a given index.
- * @todo Make the dataset generic. Currently supprting only tensor. Always ground truth.
+ * @brief Database. An abstract class representing a database. All databases should inherit from this class. All subclasses should overwrite :cpp:function:`Database::get_item` to fetch data from a given index.
+ * @todo Make the dataset generic. Always ground truth.
  */
 class Database {
 
@@ -29,8 +29,6 @@ public:
      */
     virtual unsigned int get_len() = 0;
 
-    // void load(const std::string& /*dataPath*/, const std::string& labelPath = "");
-
 protected:
     
     std::vector<std::shared_ptr<Tensor>> mData;
-- 
GitLab