Skip to content

Commit 4459856

Browse files
authored
Update INVALID_IMPLICIT_CONVERSION_OF_ARRAYS.MD
1 parent 1e9926c commit 4459856

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

support/INVALID_IMPLICIT_CONVERSION_OF_ARRAYS.MD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ A fixed-length array is the most primitive type of array we have available withi
2525
uint[2] fixedArray;
2626
```
2727

28-
What we're telling the compiler here is that we plan on storing two values which both need to be 256 bits in length (or 32 bytes). Because we have a deterministic value there is no need for us to store any more information. We are already bound to the constraints of the length and have also defined the size of each length by the data type. When the compiler allocates the memory for a fixed length array is reserved and both the length and data type cannot be modified.
28+
What we're telling the compiler here is that we plan on storing two values which both need to be 256 bits in length (or 32 bytes). Because we have a deterministic value there is no need for us to store any more information. We are already bound to the constraints of the length and have also defined the size of each length by the data type. When the compiler allocates the memory for a fixed length array it is then reserved and both the number of elements and data type cannot be modified.
2929

3030
###### 2.1.1. Memory Layout
3131

0 commit comments

Comments
 (0)