From 85e682b31f4bcf55f3f89a71bb7a528fa79bf6d2 Mon Sep 17 00:00:00 2001
From: Matthieu Schaller <matthieu.schaller@durham.ac.uk>
Date: Sun, 28 Apr 2013 15:54:49 +0000
Subject: [PATCH] Corrected two doxygen typos

Former-commit-id: 0694c4e3df703b42fb8f19301aab007d0143f2f2
---
 src/debug.c  | 9 +++------
 src/timers.c | 2 +-
 2 files changed, 4 insertions(+), 7 deletions(-)

diff --git a/src/debug.c b/src/debug.c
index b9dd35eb68..2ef93a1eaa 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 073e26a0e6..0bc1a85d92 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 ) {
-- 
GitLab