aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-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];
}
}