Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: typos in documentation files #1453

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/MPT_Circuit.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion eth-types/src/bytecode.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down