Skip to content

Commit

Permalink
docs: fix typos in interop docs
Browse files Browse the repository at this point in the history
  • Loading branch information
mtzsky authored Dec 11, 2024
1 parent 503956d commit 7e47079
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/src/specs/interop/interopmessages.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ contract InteropCenter {
uint256 messageNum; // a 'nonce' to guarantee different hashes.
}
// Verifies if such interop message was ever producted.
// Verifies if such interop message was ever produced.
function verifyInteropMessage(bytes32 interopHash, Proof merkleProof) return bool;
}
```
Expand Down Expand Up @@ -79,7 +79,7 @@ only if someone has first called `signup_open()` on chain A.
```solidity
// Contract deployed on chain A.
contract SignupManager {
public bytes32 sigup_open_msg_hash;
public bytes32 signup_open_msg_hash;
function signup_open() onlyOwner {
// We are open for business
signup_open_msg_hash = InteropCenter(INTEROP_CENTER_ADDRESS).sendInteropMessage("We are open");
Expand Down

0 comments on commit 7e47079

Please sign in to comment.