diff --git a/src/cell.c b/src/cell.c
index 5d3f0673f77aca351459177ebecddda54106c6a6..166538aa2fd9fe20de9c2a9b43abad6f13383ec4 100644
--- a/src/cell.c
+++ b/src/cell.c
@@ -899,6 +899,7 @@ int cell_is_drift_needed(struct cell *c, int ti_current) {
  * if the space needs to be rebuilt.
  *
  * @param c the #cell.
+ * @param s the #scheduler.
  *
  * @return 1 If the space needs rebuilding. 0 otherwise.
  */
diff --git a/src/runner.c b/src/runner.c
index cf70e482bc5e31d35500ec00a49e4d888d6270f5..415af5cb1b4d7f78ece423b40ed31d327ee734ab 100644
--- a/src/runner.c
+++ b/src/runner.c
@@ -747,10 +747,13 @@ void runner_do_ghost(struct runner *r, struct cell *c) {
 }
 
 /**
- * @brief Drift particles and g-particles in a cell forward in time
+ * @brief Drift particles and g-particles in a cell forward in time,
+ *              unskipping any tasks associated with active cells.
  *
  * @param c The cell.
  * @param e The engine.
+ * @param drift whether to actually drift the particles, will not be
+ *              necessary for non-local cells.
  */
 static void runner_do_drift(struct cell *c, struct engine *e, int drift) {