Skip to content
Open
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
4 changes: 2 additions & 2 deletions src/ByteManipulationLibrary.sol
Original file line number Diff line number Diff line change
Expand Up @@ -98,12 +98,12 @@ library ByteManipulationLibrary {
}

/**
@notice extract a static sized array of static sized data like uint256, address.
@notice extract a dynamic length array of fixed sized data like uint256, address.
@param data abi encoded bytes calldata
@param position position of the data to be extracted
@return returns bytes of extracted data.
**/
function getStaticArrayData(
function getFixedElementDynamicArrayData(
bytes calldata data,
uint256 position
) external pure returns (bytes[] memory) {
Expand Down