diff --git a/src/interface/IIntegrityToolingV1.sol b/src/interface/IIntegrityToolingV1.sol index 593bdc0..84471bc 100644 --- a/src/interface/IIntegrityToolingV1.sol +++ b/src/interface/IIntegrityToolingV1.sol @@ -3,7 +3,7 @@ pragma solidity ^0.8.25; /// @title IIntegrityToolingV1 -/// Implemented by any contract that exposes integrity check functions for the +/// @notice Implemented by any contract that exposes integrity check functions for the /// Rain interpreter. Ostensibly this is for the interpreter itself and also /// extension points such as externs. These integrity checks are for the opcodes /// tooled by IOpcodeToolingV1 implementations. diff --git a/src/interface/IOpcodeToolingV1.sol b/src/interface/IOpcodeToolingV1.sol index fedb92e..39fb612 100644 --- a/src/interface/IOpcodeToolingV1.sol +++ b/src/interface/IOpcodeToolingV1.sol @@ -3,7 +3,7 @@ pragma solidity ^0.8.25; /// @title IOpcodeToolingV1 -/// Implemented by any contract that exposes opcode functions (new words) for the +/// @notice Implemented by any contract that exposes opcode functions (new words) for the /// Rain interpreter. Ostensibly this is for the interpreter itself and also /// extension points such as externs. interface IOpcodeToolingV1 { diff --git a/src/interface/IParserToolingV1.sol b/src/interface/IParserToolingV1.sol index b117f78..e7a8585 100644 --- a/src/interface/IParserToolingV1.sol +++ b/src/interface/IParserToolingV1.sol @@ -3,7 +3,7 @@ pragma solidity ^0.8.25; /// @title IParserToolingV1 -/// Implemented by any contract that exposes parser tooling functions for the +/// @notice Implemented by any contract that exposes parser tooling functions for the /// Rain interpreter. Ostensibly this is for the interpreter itself while sub /// parsers have a separate interface. interface IParserToolingV1 { diff --git a/src/interface/ISubParserToolingV1.sol b/src/interface/ISubParserToolingV1.sol index c4479dc..6ac6f92 100644 --- a/src/interface/ISubParserToolingV1.sol +++ b/src/interface/ISubParserToolingV1.sol @@ -3,7 +3,7 @@ pragma solidity ^0.8.25; /// @title ISubParserToolingV1 -/// Implemented by any contract that exposes sub parser tooling functions for the +/// @notice Implemented by any contract that exposes sub parser tooling functions for the /// Rain interpreter. interface ISubParserToolingV1 { /// Builds sub parser word parsers.