diff --git a/docs/MPT_Circuit.md b/docs/MPT_Circuit.md index a83fef4785..f761f60bd0 100644 --- a/docs/MPT_Circuit.md +++ b/docs/MPT_Circuit.md @@ -205,13 +205,13 @@ This can correspond to the topological configuration change on the whole path in #### PathType::ExtensionNew -`PathType::ExtensionNew` refers to the situation that the new path extends the old path in its toplogical configuration. +`PathType::ExtensionNew` refers to the situation that the new path extends the old path in its topological configuration. This can correspond to the extended part of the path in insert to append, insert to fill operations. #### PathType::ExtensionOld -`PathType::ExtensionOld` refers to the situation that the old path extends the new path in its toplogical configuration. +`PathType::ExtensionOld` refers to the situation that the old path extends the new path in its topological configuration. This can correspond to the extended part of the path in delete from append, delete from fill operations. diff --git a/eth-types/src/bytecode.rs b/eth-types/src/bytecode.rs index 36a38b4e4b..d23058c903 100644 --- a/eth-types/src/bytecode.rs +++ b/eth-types/src/bytecode.rs @@ -154,7 +154,7 @@ impl Bytecode { self } - /// Generate the diassembly + /// Generate the disassembly pub fn disasm(&self) -> String { let mut asm = String::new(); for op in self.iter() {