File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ library Arrays {
57
57
function unsafeAccess (address [] storage arr , uint256 pos ) internal pure returns (StorageSlot.AddressSlot storage ) {
58
58
bytes32 slot;
59
59
// We use assembly to calculate the storage slot of the element at index `pos` of the dynamic array `arr`
60
- // following https://docs.soliditylang.org/en/latest /internals/layout_in_storage.html#mappings-and-dynamic-arrays.
60
+ // following https://docs.soliditylang.org/en/v0.8.20 /internals/layout_in_storage.html#mappings-and-dynamic-arrays.
61
61
62
62
/// @solidity memory-safe-assembly
63
63
assembly {
@@ -75,7 +75,7 @@ library Arrays {
75
75
function unsafeAccess (bytes32 [] storage arr , uint256 pos ) internal pure returns (StorageSlot.Bytes32Slot storage ) {
76
76
bytes32 slot;
77
77
// We use assembly to calculate the storage slot of the element at index `pos` of the dynamic array `arr`
78
- // following https://docs.soliditylang.org/en/latest /internals/layout_in_storage.html#mappings-and-dynamic-arrays.
78
+ // following https://docs.soliditylang.org/en/v0.8.20 /internals/layout_in_storage.html#mappings-and-dynamic-arrays.
79
79
80
80
/// @solidity memory-safe-assembly
81
81
assembly {
@@ -93,7 +93,7 @@ library Arrays {
93
93
function unsafeAccess (uint256 [] storage arr , uint256 pos ) internal pure returns (StorageSlot.Uint256Slot storage ) {
94
94
bytes32 slot;
95
95
// We use assembly to calculate the storage slot of the element at index `pos` of the dynamic array `arr`
96
- // following https://docs.soliditylang.org/en/latest /internals/layout_in_storage.html#mappings-and-dynamic-arrays.
96
+ // following https://docs.soliditylang.org/en/v0.8.20 /internals/layout_in_storage.html#mappings-and-dynamic-arrays.
97
97
98
98
/// @solidity memory-safe-assembly
99
99
assembly {
You can’t perform that action at this time.
0 commit comments