From af8fcdf073ea399053c0bce6d246a8c407ac818c Mon Sep 17 00:00:00 2001 From: Patrick Walton Date: Tue, 15 Sep 2015 16:33:33 -0700 Subject: [PATCH] gfx: Fix a minor typo. --- components/gfx/text/glyph.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/gfx/text/glyph.rs b/components/gfx/text/glyph.rs index 45ec39ca717..f5999f614f7 100644 --- a/components/gfx/text/glyph.rs +++ b/components/gfx/text/glyph.rs @@ -533,7 +533,7 @@ impl<'a> GlyphStore { assert!(i < self.char_len()); 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; }