Merge pull request #6826 from ethereum/style-fixes-creating-contracts

[DOCS] Make Creating contracts code examples match style guide
This commit is contained in:
Chris Chinchilla 2019-05-24 09:07:11 +02:00 committed by GitHub
commit 2a2cea08dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -35,6 +35,7 @@ This means that cyclic creation dependencies are impossible.
pragma solidity >=0.4.22 <0.7.0; pragma solidity >=0.4.22 <0.7.0;
contract OwnedToken { contract OwnedToken {
// `TokenCreator` is a contract type that is defined below. // `TokenCreator` is a contract type that is defined below.
// It is fine to reference it as long as it is not used // It is fine to reference it as long as it is not used
@ -86,6 +87,7 @@ This means that cyclic creation dependencies are impossible.
} }
} }
contract TokenCreator { contract TokenCreator {
function createToken(bytes32 name) function createToken(bytes32 name)
public public