Minor documentation typos.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
diff --git a/docs/TODO b/docs/TODO
index ee4ec39..592809a 100644
--- a/docs/TODO
+++ b/docs/TODO
@@ -19,8 +19,5 @@ not exactly bugs, but should be considered though:
* Possibly add support for reading PFM files.
-* Is the anti-aliased glyphs feature of BDF also available in PCF format?
- If yes, add support to the PCF driver.
-
--- end of TODO ---
diff --git a/include/freetype/freetype.h b/include/freetype/freetype.h
index 6ed12a0..8aa9751 100644
--- a/include/freetype/freetype.h
+++ b/include/freetype/freetype.h
@@ -1143,12 +1143,12 @@ FT_BEGIN_HEADER
/* fixed point pixels. Always positive. */
/* */
/* <Note> */
- /* The values of `ascender', `descender', and `height' are only the */
- /* scaled versions of `face->ascender', `face->descender', and */
- /* `face->height'. */
+ /* For scalable fonts, the values of `ascender', `descender', and */
+ /* `height' are scaled versions of `face->ascender', */
+ /* `face->descender', and `face->height', respectively. */
/* */
/* Unfortunately, due to glyph hinting, these values might not be */
- /* exact for certain fonts, they thus must be treated as unreliable */
+ /* exact for certain fonts. They thus must be treated as unreliable */
/* with an error margin of at least one pixel! */
/* */
/* Indeed, the only way to get the exact pixel ascender and descender */
@@ -1854,7 +1854,7 @@ FT_BEGIN_HEADER
/* character dimensions is zero, its value is set equal to the other. */
/* */
/* <InOut> */
- /* size :: A handle to a target size object. */
+ /* face :: A handle to a target face object. */
/* */
/* <Input> */
/* char_width :: The character width, in 26.6 fractional points. */
diff --git a/src/pfr/pfrobjs.c b/src/pfr/pfrobjs.c
index af993e8..3993eee 100644
--- a/src/pfr/pfrobjs.c
+++ b/src/pfr/pfrobjs.c
@@ -164,9 +164,8 @@
root->units_per_EM = (FT_UShort)phy_font->outline_resolution;
root->ascender = (FT_Short) phy_font->bbox.yMax;
root->descender = (FT_Short) phy_font->bbox.yMin;
- root->height = (FT_Short)
- ( ( ( root->ascender - root->descender ) * 12 )
- / 10 );
+ root->height = (FT_Short)(
+ ( ( root->ascender - root->descender ) * 12 ) / 10 );
if ( phy_font->num_strikes > 0 )
{
diff --git a/src/truetype/ttobjs.c b/src/truetype/ttobjs.c
index 9d4fb7a..690c6dc 100644
--- a/src/truetype/ttobjs.c
+++ b/src/truetype/ttobjs.c
@@ -593,7 +593,7 @@
size->ttmetrics.y_ratio = 0x10000L;
}
- /* Compute root ascender, descender, test height, and max_advance */
+ /* Compute root ascender, descender, text height, and max_advance */
metrics->ascender = ( FT_MulFix( face->root.ascender,
metrics->y_scale ) + 32 ) & -64;
metrics->descender = ( FT_MulFix( face->root.descender,