aboutsummaryrefslogtreecommitdiffstats
path: root/docs/types.rst
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-08-10 03:10:53 +0800
committerchriseth <chris@ethereum.org>2018-08-14 21:50:46 +0800
commit8a06000a307e7f2a72f9bfdc114d84fab8ad2ebf (patch)
treeb3196dc6f52ab5e60bcd09533a27194b52e68c08 /docs/types.rst
parent6a5a187d83d97764fc6f77e392cdb2b9d8d6bb72 (diff)
downloaddexon-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.rst2
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.
::