Skip to content

Commit 14fa04e

Browse files
ernestognwarr00
andauthored
Update contracts/utils/Memory.sol
Co-authored-by: Arr00 <[email protected]>
1 parent d514606 commit 14fa04e

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

contracts/utils/Memory.sol

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,15 @@
22

33
pragma solidity ^0.8.20;
44

5-
/// @dev Utilities to manipulate memory.
6-
///
7-
/// Memory is a contiguous and dynamic byte array in which Solidity stores non-primitive types.
8-
/// This library provides functions to manipulate pointers to this dynamic array.
9-
///
10-
/// WARNING: When manipulating memory, make sure to follow the Solidity documentation
11-
/// guidelines for https://docs.soliditylang.org/en/v0.8.20/assembly.html#memory-safety[Memory Safety].
5+
/**
6+
* @dev Utilities to manipulate memory.
7+
*
8+
* Memory is a contiguous and dynamic byte array in which Solidity stores non-primitive types.
9+
* This library provides functions to manipulate pointers to this dynamic array.
10+
*
11+
* WARNING: When manipulating memory, make sure to follow the Solidity documentation
12+
* guidelines for https://docs.soliditylang.org/en/v0.8.20/assembly.html#memory-safety[Memory Safety].
13+
*/
1214
library Memory {
1315
type Pointer is bytes32;
1416

0 commit comments

Comments
 (0)