Skip to content

Commit 7e84c79

Browse files
committed
chore: partially apply #4742
1 parent e54a578 commit 7e84c79

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/ssz/src/tree_hash/merkle_hasher.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ fn get_parent(i: usize) -> usize {
151151
///
152152
/// It is a logic error to provide `i == 0`.
153153
///
154-
/// E.g., if `i` is 1, depth is 0. If `i` is is 1, depth is 1.
154+
/// E.g., if `i` is 1, depth is 0. If `i` is 1, depth is 1.
155155
fn get_depth(i: usize) -> usize {
156156
let total_bits = mem::size_of::<usize>() * 8;
157157
total_bits - i.leading_zeros() as usize - 1

unionvisor/src/bundle.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ impl Bundle {
149149
)
150150
}
151151

152-
/// Provides the full path the the versions directory
152+
/// Provides the full path the versions directory
153153
pub fn versions_path(&self) -> PathBuf {
154154
self.path.join(&self.meta.versions_directory)
155155
}

0 commit comments

Comments
 (0)