Clarification

This commit is contained in:
chriseth 2016-03-14 15:46:55 +01:00
parent c38797fbff
commit d34b59453a

View File

@ -296,7 +296,9 @@ So `bytes` should always be preferred over `byte[]` because it is cheaper.
Allocating Memory Arrays
^^^^^^^^^^^^^^^^^^^^^^^^
Creating arrays with variable length in memory can be done using the `new` keyword:
Creating arrays with variable length in memory can be done using the `new` keyword.
As opposed to storage arrays, it is **not** possible to resize memory arrays by assigning to
the `.length` member.
::