freetype: fix doc comment typo.

R=r
CC=golang-dev
http://codereview.appspot.com/2116046
This commit is contained in:
Nigel Tao 2010-09-08 20:21:29 +10:00
parent b8ed0a9c12
commit c92eed8b0c

View file

@ -27,7 +27,7 @@ func (x Fix32) String() string {
}
// String returns a human-readable representation of a 48.16 fixed point number.
// For example, the number one-and-a-quarter becomes "1:00064".
// For example, the number one-and-a-quarter becomes "1:16384".
func (x Fix64) String() string {
i, f := x/65536, x%65536
if f < 0 {