Fix outdated references to byte[] type (it's now bytes1[])

This commit is contained in:
Kamil Śliwak
2021-07-08 13:16:23 +02:00
parent 691083c032
commit ddccd73a4b
4 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -234,7 +234,7 @@ This means that the allocatable memory starts at ``0x80``, which is the initial
of the free memory pointer.
Elements in memory arrays in Solidity always occupy multiples of 32 bytes (this is
even true for ``byte[]``, but not for ``bytes`` and ``string``). Multi-dimensional memory
even true for ``bytes1[]``, but not for ``bytes`` and ``string``). Multi-dimensional memory
arrays are pointers to memory arrays. The length of a dynamic array is stored at the
first slot of the array and followed by the array elements.