From efadbde72c36196c6ddcd5a39cf1ec703314b484 Mon Sep 17 00:00:00 2001 From: Marko Atanasievski Date: Tue, 1 Oct 2024 15:10:03 +0200 Subject: [PATCH] fix: lint --- mpt_trie/src/debug_tools/diff.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mpt_trie/src/debug_tools/diff.rs b/mpt_trie/src/debug_tools/diff.rs index 6332e44d0..eb7c923ab 100644 --- a/mpt_trie/src/debug_tools/diff.rs +++ b/mpt_trie/src/debug_tools/diff.rs @@ -1,10 +1,10 @@ //! Diffing tools to compare two tries against each other. Useful when you want //! to find where the tries diverge from one other. //! -//! Here a top-down approach is used, following the trie structure from the root to -//! the leaves. The diffing is done by comparing the nodes at each level. Diff functions -//! will not return on the first difference, but will try to find and collect all diff -//! points. +//! Here a top-down approach is used, following the trie structure from the root +//! to the leaves. The diffing is done by comparing the nodes at each level. +//! Diff functions will not return on the first difference, but will try to find +//! and collect all diff points. use std::fmt::{self, Debug}; use std::{fmt::Display, ops::Deref};