gfx: Fix a minor typo.

This commit is contained in:
Patrick Walton 2015-09-15 16:33:33 -07:00
parent 53f47e74db
commit af8fcdf073

View file

@ -533,7 +533,7 @@ impl<'a> GlyphStore {
assert!(i < self.char_len()); assert!(i < self.char_len());
let entry = GlyphEntry::complex(cluster_start, ligature_start, 0); let entry = GlyphEntry::complex(cluster_start, ligature_start, 0);
debug!("adding spacer for chracter without associated glyph[idx={:?}]", i); debug!("adding spacer for character without associated glyph[idx={:?}]", i);
self.entry_buffer[i.to_usize()] = entry; self.entry_buffer[i.to_usize()] = entry;
} }