diff options
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 fdba4b87..6fc418dd 100644 --- a/font/src/lib.rs +++ b/font/src/lib.rs @@ -132,7 +132,7 @@ impl FontDesc { impl fmt::Display for FontDesc { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { - write!(f, "name '{}' and style '{}'", self.name, self.style) + write!(f, "name {} and style {}", self.name, self.style) } } |