diff options
author | Christian Duerr <chrisduerr@users.noreply.github.com> | 2018-07-01 16:31:46 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-01 16:31:46 +0000 |
commit | 12afbd007db8a8995617b3e7ebda3840860bbadc (patch) | |
tree | a0de7c3db93b18b5edbbe44ab2f6b179ae6acc28 /font/src/lib.rs | |
parent | d5690f6cc75908d81d0eccf57e62d486c13d34f5 (diff) | |
download | alacritty-12afbd007db8a8995617b3e7ebda3840860bbadc.tar.gz alacritty-12afbd007db8a8995617b3e7ebda3840860bbadc.zip |
Fix clippy issues
Diffstat (limited to 'font/src/lib.rs')
-rw-r--r-- | font/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/font/src/lib.rs b/font/src/lib.rs index 05680da2..ad94d084 100644 --- a/font/src/lib.rs +++ b/font/src/lib.rs @@ -344,5 +344,5 @@ pub trait Rasterize { fn load_font(&mut self, &FontDesc, Size) -> Result<FontKey, Self::Err>; /// Rasterize the glyph described by `GlyphKey`. - fn get_glyph(&mut self, &GlyphKey) -> Result<RasterizedGlyph, Self::Err>; + fn get_glyph(&mut self, GlyphKey) -> Result<RasterizedGlyph, Self::Err>; } |