Skip to content
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 scripts/deploy/DeployOPChain.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ contract DeployOPChain is SystemDeploy {
// support deploying straight to permissioned games, and the starting root does not
// matter for that, as long as it is non-zero, since no games will be played. We do not
// deploy the permissionless game (and therefore do not set a starting root for it here)
// because to to update to the permissionless game, we will need to update its starting
// because to update to the permissionless game, we will need to update its starting
// anchor root and deploy a new permissioned dispute game contract anyway.
//
// You can `console.logBytes(abi.encode(ScriptConstants.DEFAULT_OUTPUT_ROOT()))` to get the bytes that
Expand Down
4 changes: 2 additions & 2 deletions src/cannon/MIPS64.sol
Original file line number Diff line number Diff line change
Expand Up @@ -359,9 +359,9 @@ contract MIPS64 is ISemver {
}

/// @notice Loads a subword of byteLength size contained from memory based on the low-order bits of vaddr
/// @param _vaddr The virtual address of the the subword.
/// @param _vaddr The virtual address of the subword.
/// @param _byteLength The size of the subword.
/// @param _signExtend Whether to sign extend the selected subwrod.
/// @param _signExtend Whether to sign extend the selected subword.
function loadSubWord(
State memory _state,
uint64 _vaddr,
Expand Down
4 changes: 2 additions & 2 deletions src/cannon/libraries/MIPS64Instructions.sol
Original file line number Diff line number Diff line change
Expand Up @@ -880,10 +880,10 @@ library MIPS64Instructions {
}

/// @notice Selects a subword of byteLength size contained in memWord based on the low-order bits of vaddr
/// @param _vaddr The virtual address of the the subword.
/// @param _vaddr The virtual address of the subword.
/// @param _memWord The full word to select a subword from.
/// @param _byteLength The size of the subword.
/// @param _signExtend Whether to sign extend the selected subwrod.
/// @param _signExtend Whether to sign extend the selected subword.
function selectSubWord(
uint64 _vaddr,
uint64 _memWord,
Expand Down