aboutsummaryrefslogtreecommitdiffstats
path: root/src/gdisp
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@unormal.org>2012-12-16 20:43:14 +0100
committerJoel Bodenmann <joel@unormal.org>2012-12-16 20:43:14 +0100
commit3a9a2a10b74627ae178f69b26b098b3cfef800a7 (patch)
treed0919cb79572bcd98d45074c7757e32bf7c31794 /src/gdisp
parent4743790cd40832205f701a280acd622cd003a9fd (diff)
downloaduGFX-3a9a2a10b74627ae178f69b26b098b3cfef800a7.tar.gz
uGFX-3a9a2a10b74627ae178f69b26b098b3cfef800a7.tar.bz2
uGFX-3a9a2a10b74627ae178f69b26b098b3cfef800a7.zip
doxygen update
Diffstat (limited to 'src/gdisp')
-rw-r--r--src/gdisp/fonts.c6
-rw-r--r--src/gdisp/gdisp.c2
2 files changed, 4 insertions, 4 deletions
diff --git a/src/gdisp/fonts.c b/src/gdisp/fonts.c
index e02dc3bd..59293359 100644
--- a/src/gdisp/fonts.c
+++ b/src/gdisp/fonts.c
@@ -737,7 +737,7 @@ static bool_t matchfont(const char *pattern, const char *name) {
* @details The supplied name is matched against the font name. A '*' will replace 0 or more characters.
* @return Returns a font or NULL if no matching font could be found.
*
- * @params[in] name The font name to find.
+ * @param[in] name The font name to find.
*
* @note Wildcard matching will match the shortest possible match.
*
@@ -756,7 +756,7 @@ font_t gdispOpenFont(const char *name) {
/**
* @brief Release a font after use.
*
- * @params[in] font The font to release.
+ * @param[in] font The font to release.
*
* @api
*/
@@ -768,7 +768,7 @@ void gdispCloseFont(font_t font) {
* @brief Get the name of the specified font.
* @returns The name of the font.
*
- * @params[in] font The font to get the name for.
+ * @param[in] font The font to get the name for.
*
* @api
*/
diff --git a/src/gdisp/gdisp.c b/src/gdisp/gdisp.c
index 1f37e107..48d00b95 100644
--- a/src/gdisp/gdisp.c
+++ b/src/gdisp/gdisp.c
@@ -19,7 +19,7 @@
*/
/**
- * @file src/gdisp.c
+ * @file src/gdisp/gdisp.c
* @brief GDISP Driver code.
*
* @addtogroup GDISP