diff options
author | chriseth <chris@ethereum.org> | 2018-08-10 03:10:53 +0800 |
---|---|---|
committer | chriseth <chris@ethereum.org> | 2018-08-14 21:50:46 +0800 |
commit | 8a06000a307e7f2a72f9bfdc114d84fab8ad2ebf (patch) | |
tree | b3196dc6f52ab5e60bcd09533a27194b52e68c08 /docs/types.rst | |
parent | 6a5a187d83d97764fc6f77e392cdb2b9d8d6bb72 (diff) | |
download | dexon-solidity-8a06000a307e7f2a72f9bfdc114d84fab8ad2ebf.tar.gz dexon-solidity-8a06000a307e7f2a72f9bfdc114d84fab8ad2ebf.tar.zst dexon-solidity-8a06000a307e7f2a72f9bfdc114d84fab8ad2ebf.zip |
Update documentation.
Diffstat (limited to 'docs/types.rst')
-rw-r--r-- | docs/types.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/types.rst b/docs/types.rst index 2cb85387..c216fd83 100644 --- a/docs/types.rst +++ b/docs/types.rst @@ -662,7 +662,7 @@ Allocating Memory Arrays 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 (e.g. by assigning to the ``.length`` member). You either have to calculate the required size in advance -or crete a new memory array and copy every element. +or create a new memory array and copy every element. :: |