aboutsummaryrefslogtreecommitdiffstats
path: root/halext/include/gdisp_fonts.h
diff options
context:
space:
mode:
Diffstat (limited to 'halext/include/gdisp_fonts.h')
-rw-r--r--halext/include/gdisp_fonts.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/halext/include/gdisp_fonts.h b/halext/include/gdisp_fonts.h
index a271030e..a1a4c3cb 100644
--- a/halext/include/gdisp_fonts.h
+++ b/halext/include/gdisp_fonts.h
@@ -80,7 +80,7 @@ struct font {
};
/**
- * @brief Macro's to get to the complex parts of the font structure.
+ * @brief Macros to get to the complex parts of the font structure.
*/
#define _getCharWidth(f,c) (((c) < (f)->minChar || (c) > (f)->maxChar) ? 0 : (f)->widthTable[(c) - (f)->minChar])
#define _getCharOffset(f,c) ((f)->offsetTable[(c) - (f)->minChar])