diff options
author | Alex Auvolat <alex@adnab.me> | 2022-02-21 16:59:37 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-03-14 10:52:31 +0100 |
commit | 55d44715998d01563fe830d1dbc35745bc9427bf (patch) | |
tree | cd4723e40be03e12e640eebb4caca57c08295bb5 /src/util/data.rs | |
parent | bb04d94fa92740eebeee513030faf136bfd26da7 (diff) | |
download | garage-55d44715998d01563fe830d1dbc35745bc9427bf.tar.gz garage-55d44715998d01563fe830d1dbc35745bc9427bf.zip |
Remove ... at end of hex IDs
Diffstat (limited to 'src/util/data.rs')
-rw-r--r-- | src/util/data.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/data.rs b/src/util/data.rs index f0744307..7715c2cc 100644 --- a/src/util/data.rs +++ b/src/util/data.rs @@ -22,7 +22,7 @@ impl std::convert::AsRef<[u8]> for FixedBytes32 { impl fmt::Debug for FixedBytes32 { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { - write!(f, "{}…", hex::encode(&self.0[..8])) + write!(f, "{}", hex::encode(&self.0[..8])) } } |