From b4e4992a5c25aaae7faebffc85f8fc8eccb7b2cf Mon Sep 17 00:00:00 2001 From: Eugene P Date: Thu, 10 Jan 2019 12:30:21 +0300 Subject: [PATCH] rustfmt --- core/src/core/hash.rs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/core/src/core/hash.rs b/core/src/core/hash.rs index 76bd36d2..61a27baa 100644 --- a/core/src/core/hash.rs +++ b/core/src/core/hash.rs @@ -54,11 +54,7 @@ impl fmt::Display for Hash { let starting = &hash_hex[..NUM_SHOW]; let ending = &hash_hex[(len - NUM_SHOW)..]; - write!(f, - "{}...{}", - starting, - ending - ) + write!(f, "{}...{}", starting, ending) } }