Skip to content
Merged
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 src/interface/IIntegrityToolingV1.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion src/interface/IOpcodeToolingV1.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion src/interface/IParserToolingV1.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion src/interface/ISubParserToolingV1.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Loading