diff options
author | Glenn Watson <gw@intuitionlibrary.com> | 2014-07-11 10:30:52 +1000 |
---|---|---|
committer | Glenn Watson <gw@intuitionlibrary.com> | 2014-07-24 13:24:22 +1000 |
commit | 40559d148aaa80f040506a08b9a4e4d163dfc51a (patch) | |
tree | b93525cfa2da7c2ee0d593e362cb796ab000403f /src/components/gfx/font_cache_task.rs | |
parent | 6465bf6a851435c66285130f4dd4d3c8678ebcc7 (diff) | |
download | servo-40559d148aaa80f040506a08b9a4e4d163dfc51a.tar.gz servo-40559d148aaa80f040506a08b9a4e4d163dfc51a.zip |
Address review comments.
Diffstat (limited to 'src/components/gfx/font_cache_task.rs')
-rw-r--r-- | src/components/gfx/font_cache_task.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/gfx/font_cache_task.rs b/src/components/gfx/font_cache_task.rs index 1dd71f9f1f8..dd1771881a6 100644 --- a/src/components/gfx/font_cache_task.rs +++ b/src/components/gfx/font_cache_task.rs @@ -105,7 +105,7 @@ impl FontCache { self.web_families.insert(family_name.clone(), family); } let family = self.web_families.get_mut(&family_name); - family.add_template(format!("{}", url).as_slice(), Some(bytes)); + family.add_template(format!("{}", url).as_slice(), Some(bytes)); }, Err(msg) => { fail!(msg); |