pkstrings: change write_fmt to write! like other places
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
parent
7fa4a2079a
commit
88206d84d3
1 changed files with 1 additions and 1 deletions
|
@ -133,7 +133,7 @@ impl Deref for PKString {
|
|||
|
||||
impl fmt::Display for PKString {
|
||||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||
f.write_fmt(format_args!("{:?}", &self.0))
|
||||
write!(f, "{:?}", &self.0)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue