* include/freetype/freetype.h (FT_Face_Properties): Fix bad example, typo.

This commit is contained in:
Alexei Podtelezhnikov 2017-02-21 21:43:37 -05:00
parent b31053476c
commit 73a7ce3d00
1 changed files with 2 additions and 2 deletions

View File

@ -3668,7 +3668,7 @@ FT_BEGIN_HEADER
*
* FT_Parameter property2;
* FT_LcdFiveTapFilter custom_weight =
* { 0x10, 0x40, 0x70, 0x40, 0x10 };
* { 0x11, 0x44, 0x56, 0x44, 0x11 };
*
* FT_Parameter property3;
* FT_Int32 random_seed = 314159265;
@ -3699,7 +3699,7 @@ FT_BEGIN_HEADER
* property.tag = FT_PARAM_TAG_LCD_FILTER_WEIGHTS;
* property.data = NULL;
*
* FT_Face_Option( face, 1, &property );
* FT_Face_Properties( face, 1, &property );
* }
*
*/