Make code examples conform to style guide

This commit is contained in:
Chris Ward 2019-05-27 16:59:54 +02:00
parent dee023bda6
commit e81e71e879

View File

@ -49,6 +49,7 @@ more advanced example to implement a set).
pragma solidity >=0.4.22 <0.7.0; pragma solidity >=0.4.22 <0.7.0;
library Set { library Set {
// We define a new struct datatype that will be used to // We define a new struct datatype that will be used to
// hold its data in the calling contract. // hold its data in the calling contract.
@ -89,6 +90,7 @@ more advanced example to implement a set).
} }
} }
contract C { contract C {
Set.Data knownValues; Set.Data knownValues;