diff options
author | Arindam Mondal <arindam_mondal@hotmail.com> | 2018-05-22 16:21:32 +0800 |
---|---|---|
committer | chriseth <chris@ethereum.org> | 2018-05-29 05:37:47 +0800 |
commit | 5187c66a25d6cbea212f56cc23747dba1e9c0f2e (patch) | |
tree | 79ac42cc13df2c5af1a7400b1d61ccf5439c6dfb /docs/types.rst | |
parent | 9d5064d04d178474b95d67e87aaa32d0e5e03b0f (diff) | |
download | dexon-solidity-5187c66a25d6cbea212f56cc23747dba1e9c0f2e.tar.gz dexon-solidity-5187c66a25d6cbea212f56cc23747dba1e9c0f2e.tar.zst dexon-solidity-5187c66a25d6cbea212f56cc23747dba1e9c0f2e.zip |
Fix bug in 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 3f799c32..794a70de 100644 --- a/docs/types.rst +++ b/docs/types.rst @@ -675,7 +675,7 @@ possible: function f() public { // The next line creates a type error because uint[3] memory // cannot be converted to uint[] memory. - uint[] x = [uint(1), 3, 4]; + uint[] memory x = [uint(1), 3, 4]; } } |