diff --git a/include/aidge/data/Database.hpp b/include/aidge/data/Database.hpp
index 6b22bdef6a7706ed339fd7c94243f266df53ea63..96292f242c801a28ea100120703467b0c1f255ab 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;