Merge pull request #3865 from ethereum/updateConstructorVersionPragmas

[MERGE WITH RELEASE 0.4.22] Update version pragmas in constructor documentation.
This commit is contained in:
chriseth 2018-04-16 19:55:34 +02:00 committed by GitHub
commit 8be4cba570
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View File

@ -40,7 +40,7 @@ This means that cyclic creation dependencies are impossible.
::
pragma solidity >0.4.21;
pragma solidity ^0.4.22;
contract OwnedToken {
// TokenCreator is a contract type that is defined below.
@ -989,7 +989,7 @@ default constructor: ``contructor() public {}``.
::
pragma solidity >0.4.21;
pragma solidity ^0.4.22;
contract A {
uint public a;

View File

@ -1,4 +1,4 @@
pragma solidity >0.4.21;
pragma solidity ^0.4.22;
import "./Token.sol";

View File

@ -1,4 +1,4 @@
pragma solidity >0.4.21;
pragma solidity ^0.4.22;
contract owned {
address owner;