diff options
author | chriseth <chris@ethereum.org> | 2018-05-29 05:38:48 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-29 05:38:48 +0800 |
commit | 8f04c59046595216e9fffd93435055aa864fbd1f (patch) | |
tree | 79ac42cc13df2c5af1a7400b1d61ccf5439c6dfb | |
parent | 9d5064d04d178474b95d67e87aaa32d0e5e03b0f (diff) | |
parent | 5187c66a25d6cbea212f56cc23747dba1e9c0f2e (diff) | |
download | dexon-solidity-8f04c59046595216e9fffd93435055aa864fbd1f.tar.gz dexon-solidity-8f04c59046595216e9fffd93435055aa864fbd1f.tar.zst dexon-solidity-8f04c59046595216e9fffd93435055aa864fbd1f.zip |
Merge pull request #4169 from Arindam-Mondal/Arindam-Mondal-patch-1
Corrected typo
-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]; } } |