freetype-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Devel] Typos in online documentation.


From: Eric Poulsen
Subject: [Devel] Typos in online documentation.
Date: 06 Oct 2002 22:03:10 -0700

I've discovered a minor typo on this page of the documentation:

http://freetype.sourceforge.net/freetype2/docs/tutorial/step2.html

There are several code examples that have this bit of HTML _source_:

FT_Get_Kerning( face, previous, glyph_index, ft_kerning_mode_default,
&delta );

Notice the &delta part.  Since this is the HTML _source_, it renders as
a strange character in my browser because it is an HTML entity.  In
fact, it looks like most of the code examples aren't properly escaped
for HTML.  The above source should be: 

FT_Get_Kerning( face, previous, glyph_index, ft_kerning_mode_default,
&delta );






reply via email to

[Prev in Thread] Current Thread [Next in Thread]