Skip to content

Commit

Permalink
Fix docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuacolvin0 committed Sep 6, 2023
1 parent f8f0406 commit d5ce093
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/precompiles/ArbWasm.sol
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ interface ArbWasm {
function programVersion(address program) external view returns (uint16 version);

// @notice gets the uncompressed size of the program at the given address in bytes
// @return version the program version (0 for EVM contracts)
// @return size the size of the program in bytes rounded up to a multiple of 512
function programSize(address program) external view returns (uint32 size);

// @notice gets the memory footprint of the program at the given address in pages
// @return version the program version (0 for EVM contracts)
// @return footprint the memory footprint of program in pages
function programMemoryFootprint(address program) external view returns (uint16 footprint);

// @notice gets the conversion rate between gas and ink
Expand Down

0 comments on commit d5ce093

Please sign in to comment.