aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-05-29 05:38:48 +0800
committerGitHub <noreply@github.com>2018-05-29 05:38:48 +0800
commit8f04c59046595216e9fffd93435055aa864fbd1f (patch)
tree79ac42cc13df2c5af1a7400b1d61ccf5439c6dfb
parent9d5064d04d178474b95d67e87aaa32d0e5e03b0f (diff)
parent5187c66a25d6cbea212f56cc23747dba1e9c0f2e (diff)
downloaddexon-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.rst2
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];
}
}