diff --git a/docs/CHANGES b/docs/CHANGES index 080307258..14b57cbd9 100644 --- a/docs/CHANGES +++ b/docs/CHANGES @@ -3754,7 +3754,7 @@ BETA-8 (RELEASE CANDIDATE) CHANGES automatically when needed. - Reformatted all modules source code in order to get rid of the - basic data types redifinitions (i.e. `TT_Int' instead of `FT_Int', + basic data types redefinitions (i.e. `TT_Int' instead of `FT_Int', `T1_Fixed' instead of `FT_Fixed'). Hence the format-specific prefixes like `TT_', `T1_', `T2_' and `CID_' are only used for relevant structures. diff --git a/include/freetype/freetype.h b/include/freetype/freetype.h index 0d403f8b0..b84c35829 100644 --- a/include/freetype/freetype.h +++ b/include/freetype/freetype.h @@ -2339,9 +2339,9 @@ FT_BEGIN_HEADER /* used to determine both scaling values. */ /* */ /* FT_SIZE_REQUEST_TYPE_REAL_DIM :: */ - /* The real dimension. The sum of the the `ascender' and (minus */ - /* of) the `descender' fields of @FT_FaceRec are used to determine */ - /* both scaling values. */ + /* The real dimension. The sum of the `ascender' and (minus of) */ + /* the `descender' fields of @FT_FaceRec are used to determine both */ + /* scaling values. */ /* */ /* FT_SIZE_REQUEST_TYPE_BBOX :: */ /* The font bounding box. The width and height of the `bbox' field */ diff --git a/include/freetype/ftgzip.h b/include/freetype/ftgzip.h index 9e658b0df..3932ce688 100644 --- a/include/freetype/ftgzip.h +++ b/include/freetype/ftgzip.h @@ -117,11 +117,11 @@ FT_BEGIN_HEADER * * @inout: * output_len :: - * Before calling the function, this is the the total size of the - * output buffer, which must be large enough to hold the entire - * uncompressed data (so the size of the uncompressed data must be - * known in advance). After calling the function, `output_len' is the - * size of the used data in `output'. + * Before calling the function, this is the total size of the output + * buffer, which must be large enough to hold the entire uncompressed + * data (so the size of the uncompressed data must be known in + * advance). After calling the function, `output_len' is the size of + * the used data in `output'. * * @return: * FreeType error code. 0~means success. diff --git a/src/autofit/afblue.dat b/src/autofit/afblue.dat index b31523350..39d0598f9 100644 --- a/src/autofit/afblue.dat +++ b/src/autofit/afblue.dat @@ -65,8 +65,8 @@ // values; this essentially means that the maximum values can easily be too // large. Given that the purpose of those values is to create local // fixed-size arrays at compile time for further processing of the blue zone -// data, this isn't a problem. Note the the final zero byte of a string is -// not counted. Note also that the count holds the number of UTF-8 encoded +// data, this isn't a problem. Note the final zero byte of a string is not +// counted. Note also that the count holds the number of UTF-8 encoded // characters, not bytes. diff --git a/src/autofit/afstyles.h b/src/autofit/afstyles.h index d8d26fd34..199a2a6a1 100644 --- a/src/autofit/afstyles.h +++ b/src/autofit/afstyles.h @@ -52,10 +52,10 @@ #undef META_STYLE_LATIN #define META_STYLE_LATIN( s, S, ds ) \ STYLE_LATIN( s, S, c2cp, C2CP, ds, \ - "petite capticals from capitals", \ + "petite capitals from capitals", \ PETITE_CAPITALS_FROM_CAPITALS ) \ STYLE_LATIN( s, S, c2sc, C2SC, ds, \ - "small capticals from capitals", \ + "small capitals from capitals", \ SMALL_CAPITALS_FROM_CAPITALS ) \ STYLE_LATIN( s, S, ordn, ORDN, ds, \ "ordinals", \ diff --git a/src/autofit/aftypes.h b/src/autofit/aftypes.h index eae6e1178..ef62043c8 100644 --- a/src/autofit/aftypes.h +++ b/src/autofit/aftypes.h @@ -22,7 +22,7 @@ * Its main feature is the ability to differentiate between different * writing systems and scripts in order to apply specific rules. * - * The code has also been compartmentized into several entities that + * The code has also been compartmentalized into several entities that * should make algorithmic experimentation easier than with the old * code. * diff --git a/src/base/ftobjs.c b/src/base/ftobjs.c index fa053471b..af38d04bf 100644 --- a/src/base/ftobjs.c +++ b/src/base/ftobjs.c @@ -1418,7 +1418,7 @@ /* Type 1 and CID-keyed font drivers should recognize sfnt-wrapped */ /* format too. Here, since we can't expect that the TrueType font */ - /* driver is loaded unconditially, we must parse the font by */ + /* driver is loaded unconditionally, we must parse the font by */ /* ourselves. We are only interested in the name of the table and */ /* the offset. */ diff --git a/src/cff/cf2error.h b/src/cff/cf2error.h index d9f8c669f..512edd1d2 100644 --- a/src/cff/cf2error.h +++ b/src/cff/cf2error.h @@ -70,7 +70,7 @@ FT_BEGIN_HEADER * Upon a function call if the error code is anything other than * `FT_Err_Ok', which is guaranteed to be zero, we * will return without altering that error. This will allow the - * error to propogate and be handled at the appropriate location in + * error to propagate and be handled at the appropriate location in * the code. * * This allows a style of code where the error code is initialized diff --git a/src/cff/cf2hints.h b/src/cff/cf2hints.h index 290f57072..a8984542a 100644 --- a/src/cff/cf2hints.h +++ b/src/cff/cf2hints.h @@ -220,7 +220,7 @@ FT_BEGIN_HEADER /* character space miter limit threshold */ CF2_Fixed miterLimit; - /* vertical/horzizontal snap distance in character space */ + /* vertical/horizontal snap distance in character space */ CF2_Fixed snapThreshold; FT_Vector offsetStart0; /* first and second points of first */ diff --git a/src/cff/cffload.c b/src/cff/cffload.c index 9d3846cb5..3d1bda97b 100644 --- a/src/cff/cffload.c +++ b/src/cff/cffload.c @@ -876,8 +876,8 @@ FT_UShort glyph_sid; - /* If the the offset is greater than 2, we have to parse the */ - /* charset table. */ + /* If the offset is greater than 2, we have to parse the charset */ + /* table. */ if ( offset > 2 ) { FT_UInt j; diff --git a/src/gxvalid/gxvlcar.c b/src/gxvalid/gxvlcar.c index d600fa314..d31b6410b 100644 --- a/src/gxvalid/gxvlcar.c +++ b/src/gxvalid/gxvlcar.c @@ -114,7 +114,7 @@ +------ lcar --------------------+ | | | +===============+ | - | | looup header | | + | | lookup header | | | +===============+ | | | BinSrchHeader | | | +===============+ | diff --git a/src/pshinter/pshalgo.c b/src/pshinter/pshalgo.c index 86181cd54..8f131be75 100644 --- a/src/pshinter/pshalgo.c +++ b/src/pshinter/pshalgo.c @@ -779,7 +779,7 @@ * It turns out though that minimizing the total number of lit * pixels is also important, so position C), with one edge * aligned with a pixel boundary is actually preferable - * to A). There are also more possibile positions for C) than + * to A). There are also more possible positions for C) than * for A) or B), so it involves less distortion of the overall * character shape. */ @@ -802,7 +802,7 @@ } /* We choose between B) and C) above based on the amount - * of fractinal stem width; for small amounts, choose + * of fractional stem width; for small amounts, choose * C) always, for large amounts, B) always, and inbetween, * pick whichever one involves less stem movement. */ diff --git a/src/truetype/ttinterp.c b/src/truetype/ttinterp.c index ccbb1d762..78c35f2fa 100644 --- a/src/truetype/ttinterp.c +++ b/src/truetype/ttinterp.c @@ -1561,7 +1561,7 @@ static FT_Short GetShortIns( TT_ExecContext exc ) { - /* Reading a byte stream so there is no endianess (DaveP) */ + /* Reading a byte stream so there is no endianness (DaveP) */ exc->IP += 2; return (FT_Short)( ( exc->code[exc->IP - 2] << 8 ) + exc->code[exc->IP - 1] ); diff --git a/vms_make.com b/vms_make.com index 08a72dd94..be8c61538 100644 --- a/vms_make.com +++ b/vms_make.com @@ -1096,7 +1096,7 @@ $ type/out=vmslib.dat sys$input ! ZLIB # sys$library:libz.olb # sys$library: # zlib.h # FT_CONFIG_OPTION_SYSTEM_ZLIB $ write sys$output "New driver file vmslib.dat created." -$ write sys$output "Please customize libary locations for your site" +$ write sys$output "Please customize library locations for your site" $ write sys$output "and afterwards re-execute ''myproc'" $ goto err_exit $ endif