Commit db6d9adf authored by Carter Carlson's avatar Carter Carlson Committed by GitHub

docs(typo): `CrossL2Inbox.sol` (#11125)

* docs(typo): `CrossL2Inbox.sol`

`if{"f" => ""}`

* docs(crossL2Inbox): sync semver-lock
parent a9a274f5
...@@ -64,8 +64,8 @@ ...@@ -64,8 +64,8 @@
"sourceCodeHash": "0x3a725791a0f5ed84dc46dcdae26f6170a759b2fe3dc360d704356d088b76cfd6" "sourceCodeHash": "0x3a725791a0f5ed84dc46dcdae26f6170a759b2fe3dc360d704356d088b76cfd6"
}, },
"src/L2/CrossL2Inbox.sol": { "src/L2/CrossL2Inbox.sol": {
"initCodeHash": "0x074af4b17cfdd1d1dafaaccb79d68ab4ceef50d35dc205aeeedc265e11ae2a92", "initCodeHash": "0xde09fc5ef326a19c5e7542ad9756cc8bc68d857ea3009125c429228dd12ae664",
"sourceCodeHash": "0x5b4355b060e8e5ab81047e5f3d093869c2be7bae14a48a0e5ddf6872a219faf2" "sourceCodeHash": "0xabd5b4557e9152f26ac70ed8d0e2eb85503861b86b718af5c273752147e6c015"
}, },
"src/L2/GasPriceOracle.sol": { "src/L2/GasPriceOracle.sol": {
"initCodeHash": "0xb16f1e370e58c7693fd113a21a1b1e7ccebc03d4f1e5a76786fc27847ef51ead", "initCodeHash": "0xb16f1e370e58c7693fd113a21a1b1e7ccebc03d4f1e5a76786fc27847ef51ead",
......
...@@ -10,7 +10,7 @@ import { SafeCall } from "src/libraries/SafeCall.sol"; ...@@ -10,7 +10,7 @@ import { SafeCall } from "src/libraries/SafeCall.sol";
/// @title IDependencySet /// @title IDependencySet
/// @notice Interface for L1Block with only `isInDependencySet(uint256)` method. /// @notice Interface for L1Block with only `isInDependencySet(uint256)` method.
interface IDependencySet { interface IDependencySet {
/// @notice Returns true iff the chain associated with input chain ID is in the interop dependency set. /// @notice Returns true if the chain associated with input chain ID is in the interop dependency set.
/// Every chain is in the interop dependency set of itself. /// Every chain is in the interop dependency set of itself.
/// @param _chainId Input chain ID. /// @param _chainId Input chain ID.
/// @return True if the input chain ID corresponds to a chain in the interop dependency set, and false otherwise. /// @return True if the input chain ID corresponds to a chain in the interop dependency set, and false otherwise.
...@@ -56,8 +56,8 @@ contract CrossL2Inbox is ICrossL2Inbox, ISemver, TransientReentrancyAware { ...@@ -56,8 +56,8 @@ contract CrossL2Inbox is ICrossL2Inbox, ISemver, TransientReentrancyAware {
bytes32 internal constant CHAINID_SLOT = 0x6e0446e8b5098b8c8193f964f1b567ec3a2bdaeba33d36acb85c1f1d3f92d313; bytes32 internal constant CHAINID_SLOT = 0x6e0446e8b5098b8c8193f964f1b567ec3a2bdaeba33d36acb85c1f1d3f92d313;
/// @notice Semantic version. /// @notice Semantic version.
/// @custom:semver 1.0.0-beta.1 /// @custom:semver 1.0.0-beta.2
string public constant version = "1.0.0-beta.1"; string public constant version = "1.0.0-beta.2";
/// @notice Emitted when a cross chain message is being executed. /// @notice Emitted when a cross chain message is being executed.
/// @param encodedId Encoded Identifier of the message. /// @param encodedId Encoded Identifier of the message.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment