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 #24

Open
wants to merge 2 commits into
base: master
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
2 changes: 1 addition & 1 deletion media/201710-presentation-devcon3.md
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ head:
andBool G >=Int 52 *Int I +Int 21
```

Verifing ABI compliant contracts
Verifying ABI compliant contracts
--------------------------------

. . .
Expand Down
4 changes: 2 additions & 2 deletions usl/usl_kevm.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
namespace usl_kevm {

// We use the std::uint64_t type as a place holder for various data types. The
// actual bitwidth can be found in a comment. The bitwidth is refered to as
// actual bitwidth can be found in a comment. The bitwidth is referred to as
// scalar for data types that are described as arbitrary natural numbers in the
// Ethereum yellow paper.

Expand Down Expand Up @@ -168,7 +168,7 @@ using accessed_storage_list_t = std::vector<accessed_storage_t>;
// Substate
using account_address_list_t = std::vector<account_address_t>;
struct substate_t {
account_address_list_t self_destrcut;
account_address_list_t self_destruct;
log_list_t log;
account_address_list_t touched_accounts;
ether_t refund;
Expand Down