diff --git a/src/interfaces/IExttload.sol b/src/interfaces/IExttload.sol index ce1851a0f..f58967bde 100644 --- a/src/interfaces/IExttload.sol +++ b/src/interfaces/IExttload.sol @@ -2,8 +2,8 @@ pragma solidity >=0.8.24; interface IExttload { - /// @notice Called by external contracts to access granular pool state - /// @param slot Key of slot to sload + /// @notice Called by external contracts to access transient storage of the contract + /// @param slot Key of slot to tload /// @return value The value of the slot as bytes32 function exttload(bytes32 slot) external view returns (bytes32 value); }