File tree Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Original file line number Diff line number Diff line change 2
2
3
3
pragma solidity ^ 0.8.20 ;
4
4
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
+ */
12
14
library Memory {
13
15
type Pointer is bytes32 ;
14
16
You can’t perform that action at this time.
0 commit comments