Skip to content

Commit 6675c6e

Browse files
committed
up
1 parent 00ec15d commit 6675c6e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

contracts/utils/RLP.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ library RLP {
349349
/**
350350
* @dev Decodes an RLP encoded list in a memory slice into an array of RLP Items.
351351
*
352-
* NOTE: The returned array contains slice references into the original payload, not copied bytes. Any further
352+
* NOTE: The returned array contains slice references into the original payload, not copied bytes. Any further
353353
* modification of the input buffer may cause the output result to become invalid.
354354
*/
355355
function readList(Memory.Slice item) internal pure returns (Memory.Slice[] memory list) {
@@ -421,7 +421,7 @@ library RLP {
421421
/**
422422
* @dev Decode an RLP encoded list from bytes. See {readList}
423423
*
424-
* NOTE: The returned array contains slice references into the original payload, not copied bytes. Any further
424+
* NOTE: The returned array contains slice references into the original payload, not copied bytes. Any further
425425
* modification of the input buffer may cause the output result to become invalid.
426426
*/
427427
function decodeList(bytes memory value) internal pure returns (Memory.Slice[] memory) {

0 commit comments

Comments
 (0)