More typo fixes from Alexei.

This commit is contained in:
Werner Lemberg 2007-01-30 23:08:50 +00:00
parent 3eaef6c170
commit 689dd66b56
10 changed files with 22 additions and 18 deletions

View File

@ -2207,7 +2207,7 @@
* src/autohint/ahhint.c (ah_hinter_load, ah_hinter_load_glyph): * src/autohint/ahhint.c (ah_hinter_load, ah_hinter_load_glyph):
Changed so that fonts with a non-standard FontMatrix render Changed so that fonts with a non-standard FontMatrix render
correctly. Previously, the first glyph rendered from such a correctly. Previously, the first glyph rendered from such a
font did not have the tranformation matrix applied. font did not have the transformation matrix applied.
2000-12-17 Werner Lemberg <wl@gnu.org> 2000-12-17 Werner Lemberg <wl@gnu.org>

View File

@ -1725,6 +1725,10 @@ FT_BEGIN_HEADER
/* If the `FT_OPEN_PARAMS' bit is set, the parameters given by */ /* If the `FT_OPEN_PARAMS' bit is set, the parameters given by */
/* `num_params' and `params' is used. They are ignored otherwise. */ /* `num_params' and `params' is used. They are ignored otherwise. */
/* */ /* */
/* Ideally, both the `pathname' and `params' fields should be tagged */
/* as `const'; this is missing for API backwards compatibility. With */
/* other words, applications should treat them as read-only. */
/* */
typedef struct FT_Open_Args_ typedef struct FT_Open_Args_
{ {
FT_UInt flags; FT_UInt flags;
@ -2311,7 +2315,7 @@ FT_BEGIN_HEADER
* This flag implies @FT_LOAD_NO_SCALE and @FT_LOAD_IGNORE_TRANSFORM. * This flag implies @FT_LOAD_NO_SCALE and @FT_LOAD_IGNORE_TRANSFORM.
* *
* FT_LOAD_IGNORE_TRANSFORM :: * FT_LOAD_IGNORE_TRANSFORM ::
* Indicates that the tranform matrix set by @FT_Set_Transform should * Indicates that the transform matrix set by @FT_Set_Transform should
* be ignored. * be ignored.
* *
* FT_LOAD_MONOCHROME :: * FT_LOAD_MONOCHROME ::

View File

@ -4,7 +4,7 @@
/* */ /* */
/* FreeType incremental loading (specification). */ /* FreeType incremental loading (specification). */
/* */ /* */
/* Copyright 2002, 2003, 2006 by */ /* Copyright 2002, 2003, 2006, 2007 by */
/* David Turner, Robert Wilhelm, and Werner Lemberg. */ /* David Turner, Robert Wilhelm, and Werner Lemberg. */
/* */ /* */
/* This file is part of the FreeType project, and may only be used, */ /* This file is part of the FreeType project, and may only be used, */
@ -149,7 +149,7 @@ FT_BEGIN_HEADER
* FreeType error code. 0 means success. * FreeType error code. 0 means success.
* *
* @note: * @note:
* If this function returns succesfully the method * If this function returns successfully the method
* @FT_Incremental_FreeGlyphDataFunc will be called later to release * @FT_Incremental_FreeGlyphDataFunc will be called later to release
* the data bytes. * the data bytes.
* *

View File

@ -4,7 +4,7 @@
/* */ /* */
/* FreeType trigonometric functions (specification). */ /* FreeType trigonometric functions (specification). */
/* */ /* */
/* Copyright 2001, 2003, 2005 by */ /* Copyright 2001, 2003, 2005, 2007 by */
/* David Turner, Robert Wilhelm, and Werner Lemberg. */ /* David Turner, Robert Wilhelm, and Werner Lemberg. */
/* */ /* */
/* This file is part of the FreeType project, and may only be used, */ /* This file is part of the FreeType project, and may only be used, */
@ -210,7 +210,7 @@ FT_BEGIN_HEADER
* Second angle. * Second angle.
* *
* @return: * @return:
* Contrainted value of `value2-value1'. * Constrained value of `value2-value1'.
* *
*/ */
FT_EXPORT( FT_Angle ) FT_EXPORT( FT_Angle )

View File

@ -4,7 +4,7 @@
/* */ /* */
/* The FreeType memory management macros (specification). */ /* The FreeType memory management macros (specification). */
/* */ /* */
/* Copyright 1996-2001, 2002, 2004, 2005, 2006 by */ /* Copyright 1996-2001, 2002, 2004, 2005, 2006, 2007 by */
/* David Turner, Robert Wilhelm, and Werner Lemberg */ /* David Turner, Robert Wilhelm, and Werner Lemberg */
/* */ /* */
/* This file is part of the FreeType project, and may only be used, */ /* This file is part of the FreeType project, and may only be used, */
@ -209,7 +209,7 @@ FT_BEGIN_HEADER
/* /*
* Return the maximum number of adressable elements in an array. * Return the maximum number of addressable elements in an array.
* We limit ourselves to INT_MAX, rather than UINT_MAX, to avoid * We limit ourselves to INT_MAX, rather than UINT_MAX, to avoid
* any problems. * any problems.
*/ */

View File

@ -6,7 +6,7 @@
/* recorders (specification only). These are used to support native */ /* recorders (specification only). These are used to support native */
/* T1/T2 hints in the `type1', `cid', and `cff' font drivers. */ /* T1/T2 hints in the `type1', `cid', and `cff' font drivers. */
/* */ /* */
/* Copyright 2001, 2002, 2003, 2005, 2006 by */ /* Copyright 2001, 2002, 2003, 2005, 2006, 2007 by */
/* David Turner, Robert Wilhelm, and Werner Lemberg. */ /* David Turner, Robert Wilhelm, and Werner Lemberg. */
/* */ /* */
/* This file is part of the FreeType project, and may only be used, */ /* This file is part of the FreeType project, and may only be used, */
@ -452,9 +452,9 @@ FT_BEGIN_HEADER
* Use vertical coordinates (y) for horizontal stems (dim=0). Use * Use vertical coordinates (y) for horizontal stems (dim=0). Use
* horizontal coordinates (x) for vertical stems (dim=1). * horizontal coordinates (x) for vertical stems (dim=1).
* *
* There are `2*count' elements in the `coords' aray. Each even element * There are `2*count' elements in the `coords' array. Each even
* is an absolute position in font units, each odd element is a length * element is an absolute position in font units, each odd element is a
* in font units. * length in font units.
* *
* A length can be negative, in which case it must be either -20 or * A length can be negative, in which case it must be either -20 or
* -21. It is interpreted as a `ghost' stem, according to the Type 1 * -21. It is interpreted as a `ghost' stem, according to the Type 1

View File

@ -4,7 +4,7 @@
/* */ /* */
/* The FreeType PostScript name services (specification). */ /* The FreeType PostScript name services (specification). */
/* */ /* */
/* Copyright 2003 by */ /* Copyright 2003, 2007 by */
/* David Turner, Robert Wilhelm, and Werner Lemberg. */ /* David Turner, Robert Wilhelm, and Werner Lemberg. */
/* */ /* */
/* This file is part of the FreeType project, and may only be used, */ /* This file is part of the FreeType project, and may only be used, */
@ -28,7 +28,7 @@ FT_BEGIN_HEADER
* A trivial service used to retrieve the PostScript name of a given * A trivial service used to retrieve the PostScript name of a given
* font when available. The `get_name' field should never be NULL. * font when available. The `get_name' field should never be NULL.
* *
* The correponding function can return NULL to indicate that the * The corresponding function can return NULL to indicate that the
* PostScript name is not available. * PostScript name is not available.
* *
* The name is owned by the face and will be destroyed with it. * The name is owned by the face and will be destroyed with it.

View File

@ -864,7 +864,7 @@ FT_BEGIN_HEADER
* *
* USHORT version `BDF ' table version number, should be 0x0001. * USHORT version `BDF ' table version number, should be 0x0001.
* USHORT strikeCount Number of strikes (bitmap sizes) in this table. * USHORT strikeCount Number of strikes (bitmap sizes) in this table.
* ULONG stringTable Offset (froms start of BDF table) to string * ULONG stringTable Offset (from start of BDF table) to string
* table. * table.
* *
* This is followed by an array of `strikeCount' descriptors, having the * This is followed by an array of `strikeCount' descriptors, having the

View File

@ -4,7 +4,7 @@
/* */ /* */
/* Auto-fitter routines to compute global hinting values (body). */ /* Auto-fitter routines to compute global hinting values (body). */
/* */ /* */
/* Copyright 2003, 2004, 2005, 2006 by */ /* Copyright 2003, 2004, 2005, 2006, 2007 by */
/* David Turner, Robert Wilhelm, and Werner Lemberg. */ /* David Turner, Robert Wilhelm, and Werner Lemberg. */
/* */ /* */
/* This file is part of the FreeType project, and may only be used, */ /* This file is part of the FreeType project, and may only be used, */
@ -131,7 +131,7 @@
Exit: Exit:
/* /*
* By default, all uncovered glyphs are set to the latin script. * By default, all uncovered glyphs are set to the latin script.
* XXX: Shouldnt' we disable hinting or do something similar? * XXX: Shouldn't we disable hinting or do something similar?
*/ */
{ {
FT_UInt nn; FT_UInt nn;

View File

@ -22,7 +22,7 @@
* Its main feature is the ability to differentiate between different * Its main feature is the ability to differentiate between different
* scripts in order to apply language-specific rules. * scripts in order to apply language-specific rules.
* *
* The code has also been compartimentized into several entities that * The code has also been compartmentized into several entities that
* should make algorithmic experimentation easier than with the old * should make algorithmic experimentation easier than with the old
* code. * code.
* *