Hi all,

This fixes minor typos in types.h that caused errors from doxygen.  It just
changes params to param

// Dean Glazeski
From cb6a8383759147f607fef06ed2dd45ae5fcd47b5 Mon Sep 17 00:00:00 2001
From: Dean Glazeski <[email protected]>
Date: Mon, 16 Nov 2009 12:38:20 -0600
Subject: [PATCH] Fix doxygen errors from types.h.

This fixes two keyword problems that caused doxygen to spout errors.
---
 src/helper/types.h |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/helper/types.h b/src/helper/types.h
index 96a923b..03ab5f0 100644
--- a/src/helper/types.h
+++ b/src/helper/types.h
@@ -85,8 +85,8 @@ typedef bool _Bool;
 
 /**
  * Rounds @c m up to the nearest multiple of @c n using division.
- * @params m The value to round up to @c n.
- * @params n Round @c m up to a multiple of this number.
+ * @param m The value to round up to @c n.
+ * @param n Round @c m up to a multiple of this number.
  * @returns The rounded integer value.
  */
 #define DIV_ROUND_UP(m, n)	(((m) + (n) - 1) / (n))
-- 
1.6.2.5

_______________________________________________
Openocd-development mailing list
[email protected]
https://lists.berlios.de/mailman/listinfo/openocd-development

Reply via email to