Fixing remaining warnings and errors throughout
This commit is contained in:
@@ -588,8 +588,8 @@ impl BytesContainer for InternedString {
|
||||
}
|
||||
|
||||
impl fmt::Show for InternedString {
|
||||
fn fmt(obj: &InternedString, f: &mut fmt::Formatter) {
|
||||
write!(f.buf, "{}", obj.string.as_slice());
|
||||
fn fmt(obj: &InternedString, f: &mut fmt::Formatter) -> fmt::Result {
|
||||
write!(f.buf, "{}", obj.string.as_slice())
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user