Skip to content
This repository was archived by the owner on Jan 9, 2025. It is now read-only.

docs fix spelling issues #1465

Merged
merged 3 commits into from
Oct 4, 2024
Merged
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ _de facto_ so-called _zkEVM_.

While some zkEVM implementations (see for example
[Scroll](https://github.com/scroll-tech/zkevm-circuits) or
[Taiko](https://github.com/taikoxyz/taiko-geth)) try to prove existing EVM
[Taiko](https://github.com/taikoxyz/taiko-geth)) tries to prove existing EVM
implementations (mainly Geth), Kakarot is like another new Geth, but provable by
design, simply because it runs on the CairoVM.

Expand Down
4 changes: 2 additions & 2 deletions src/backend/starknet.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ namespace Internals {
return ();
}

// @notice Commit the account to the storage backend at given address
// @notice Commit the account to the storage backend at a given address
// @dev Account is deployed here if it doesn't exist already
// @dev Works on model.Account to make sure only finalized accounts are committed.
// @dev If the contract received funds after a selfdestruct in its creation, the funds are burnt.
Expand Down Expand Up @@ -186,7 +186,7 @@ namespace Internals {
tempvar range_check_ptr = range_check_ptr;
}

// @dev: EIP-6780 - If selfdestruct on an account created, dont commit data
// @dev: EIP-6780 - If selfdestruct on an account created, don't commit data
// and burn any leftover balance.
let is_created_selfdestructed = self.created * self.selfdestruct;
if (is_created_selfdestructed != 0) {
Expand Down
2 changes: 1 addition & 1 deletion src/kakarot/library.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ namespace Kakarot {
// but isn't part of Kakarot system
// Also mitigates re-entrancy risk with the Cairo Interop module
// @dev Raise if the declared corresponding evm address (retrieved with get_evm_address)
// does not recomputes into to the actual caller address
// does not recomputes into the actual caller address
func safe_get_evm_address{
syscall_ptr: felt*,
pedersen_ptr: HashBuiltin*,
Expand Down
Loading