From: Behdad Esfahbod Date: Mon, 12 Nov 2012 21:02:20 +0000 (-0800) Subject: Minor X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d0905c3400085f9c0901c558ba1b81b5039510e4;p=platform%2Fupstream%2FlibHarfBuzzSharp.git Minor --- diff --git a/src/hb-ot-head-table.hh b/src/hb-ot-head-table.hh index 0934168..3949531 100644 --- a/src/hb-ot-head-table.hh +++ b/src/hb-ot-head-table.hh @@ -47,7 +47,7 @@ struct head inline unsigned int get_upem (void) const { unsigned int upem = unitsPerEm; - /* If no valid head table found, assume 1000, which matches typicaly Type1 usage. */ + /* If no valid head table found, assume 1000, which matches typical Type1 usage. */ return 16 <= upem && upem <= 16384 ? upem : 1000; }