diff --git a/src/debug.c b/src/debug.c
index b9dd35eb689a1f5d91709db12970128ac4ad844e..2ef93a1eaa5d43b2bc2d7348567679f030a0827d 100644
--- a/src/debug.c
+++ b/src/debug.c
@@ -66,13 +66,10 @@ void printParticle ( struct part *parts , long long int id, int N ) {
     }
 
 /**
- * @brief Looks for the particle with the given id and prints its information to the standard output.
+ * @brief Prints the details of a given particle to stdout
+ * 
+ * @param p The particle to print
  * 
- * @param parts The array of particles.
- * @param id The id too look for.
- * @param N The size of the array of particles.
- *
- * (Should be used for debugging only as it runs in O(N).)
  */
 void printParticle_single ( struct part *p ) {
 
diff --git a/src/timers.c b/src/timers.c
index 073e26a0e619871ab31beb3d3ed35e0e0e71a4d0..0bc1a85d92cacaa79837f59ad3fc17c7d66f3259 100644
--- a/src/timers.c
+++ b/src/timers.c
@@ -34,7 +34,7 @@ ticks timers[ timer_count ];
  *
  * @param mask A bitmask of the timers to re-set.
  *
- * To reset all timers, use the mask #timer_mask_all.
+ * To reset all timers, use the mask #timers_mask_all.
  */
  
 void timers_reset ( unsigned int mask ) {