Fix examples.

This commit is contained in:
chriseth 2016-03-14 15:45:38 +01:00
parent a762694f1d
commit c38797fbff

View File

@ -302,8 +302,8 @@ Creating arrays with variable length in memory can be done using the `new` keywo
contract C { contract C {
function f(uint len) { function f(uint len) {
uint[] a = new uint[](7); uint[] memory a = new uint[](7);
bytes b = new bytes(len); bytes memory b = new bytes(len);
} }
} }