From 5187c66a25d6cbea212f56cc23747dba1e9c0f2e Mon Sep 17 00:00:00 2001 From: Arindam Mondal Date: Tue, 22 May 2018 13:51:32 +0530 Subject: Fix bug in documentation. --- docs/types.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]; } } -- cgit