diff --git a/include/freetype/ftglyph.h b/include/freetype/ftglyph.h
index 02c90887a..dc2ed0914 100644
--- a/include/freetype/ftglyph.h
+++ b/include/freetype/ftglyph.h
@@ -218,8 +218,9 @@
enum
{
+ ft_glyph_bbox_unscaled = 0, /* return unscaled font units */
ft_glyph_bbox_subpixels = 0, /* return unfitted 26.6 coordinates */
- ft_glyph_bbox_gridfit = 1, /* return grid-fitted coordinates */
+ ft_glyph_bbox_gridfit = 1, /* return grid-fitted 26.6 coordinates */
ft_glyph_bbox_truncate = 2, /* return coordinates in integer pixels */
ft_glyph_bbox_pixels = 3 /* return grid-fitted pixel coordinates */
};
@@ -236,8 +237,8 @@
/* */
/* glyph :: A handle to the source glyph object. */
/* */
- /* mode :: A set of bit flags that indicate how to interpret the */
- /* returned bounding box values. */
+ /* mode :: The mode which indicates how to interpret the returned */
+ /* bounding box values. */
/* */
/*