diff --git a/src/engine.c b/src/engine.c
index 6e1bdfbed43e04087e4178e1a20d1c7f0663fa8e..4ea7bc0e79e24482508e421ac6aa29ea4cf94ddf 100644
--- a/src/engine.c
+++ b/src/engine.c
@@ -1777,7 +1777,7 @@ void engine_count_and_link_tasks(struct engine *e) {
   }
 }
 
-/**
+/*
  * @brief Creates the dependency network for the gravity tasks of a given cell.
  *
  * @param sched The #scheduler.
@@ -1797,7 +1797,7 @@ void engine_count_and_link_tasks(struct engine *e) {
 /*   scheduler_addunlock(sched, c->super->grav_up, gravity); */
 /* } */
 
-/**
+/*
  * @brief Creates the dependency network for the external gravity tasks of a
  * given cell.
  *
diff --git a/src/space.c b/src/space.c
index 39a2ddbcd6dd48a662276a8cfbcd93191c8872b5..6dba35bf60da20d8c545f6c3317ed8de957a643f 100644
--- a/src/space.c
+++ b/src/space.c
@@ -176,8 +176,12 @@ int space_getsid(struct space *s, struct cell **ci, struct cell **cj,
  *
  * @param s The #space.
  * @param c The #cell to recycle.
- * @param rec_begin Pointer to the start of the list of cells to recycle.
- * @param rec_end Pointer to the end of the list of cells to recycle.
+ * @param cell_rec_begin Pointer to the start of the list of cells to recycle.
+ * @param cell_rec_end Pointer to the end of the list of cells to recycle.
+ * @param multipole_rec_begin Pointer to the start of the list of multipoles to
+ * recycle.
+ * @param multipole_rec_end Pointer to the end of the list of multipoles to
+ * recycle.
  */
 void space_rebuild_recycle_rec(struct space *s, struct cell *c,
                                struct cell **cell_rec_begin,