diff options
author | Josh Matthews <josh@joshmatthews.net> | 2015-08-13 19:06:47 -0400 |
---|---|---|
committer | Josh Matthews <josh@joshmatthews.net> | 2015-08-16 10:30:43 -0400 |
commit | 8bb853f64354b2cc1b9f9e0ea416efdd79096418 (patch) | |
tree | 3d369b7310e24d25d49939de67fd9a7371675e56 /components/gfx/platform/macos | |
parent | 7f935f010b356df23c2cf5737021880b30e6c76d (diff) | |
download | servo-8bb853f64354b2cc1b9f9e0ea416efdd79096418.tar.gz servo-8bb853f64354b2cc1b9f9e0ea416efdd79096418.zip |
Fix existing syntactics nits.
Diffstat (limited to 'components/gfx/platform/macos')
-rw-r--r-- | components/gfx/platform/macos/font_template.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/gfx/platform/macos/font_template.rs b/components/gfx/platform/macos/font_template.rs index 7e8229babe1..96be6a22f5f 100644 --- a/components/gfx/platform/macos/font_template.rs +++ b/components/gfx/platform/macos/font_template.rs @@ -89,7 +89,7 @@ impl Deserialize for CachedCTFont { type Value = CachedCTFont; #[inline] - fn visit_none<E>(&mut self) -> Result<CachedCTFont,E> where E: Error { + fn visit_none<E>(&mut self) -> Result<CachedCTFont, E> where E: Error { Ok(CachedCTFont(Mutex::new(None))) } } |