Merge pull request #497 from redsquirrel/doc-tiny-fixes

Doc tiny fixes
This commit is contained in:
chriseth 2016-04-13 13:23:49 +02:00
commit 9137506a15
2 changed files with 2 additions and 2 deletions

View File

@ -122,7 +122,7 @@ get the idea - the compiler figures that out for you.
.. index:: mapping .. index:: mapping
The next line, `mapping (address => uint) public balances;` also The next line, `mapping (address => uint) public balances;` also
creates a public state variable, but it of a more complex datatype. creates a public state variable, but it is a more complex datatype.
The type maps addresses to unsigned integers. The type maps addresses to unsigned integers.
Mappings can be seen as hashtables which are Mappings can be seen as hashtables which are
virtually initialized such that every possible key exists and is mapped to a virtually initialized such that every possible key exists and is mapped to a

View File

@ -199,7 +199,7 @@ activate themselves.
contract SimpleAuction { contract SimpleAuction {
// Parameters of the auction. Times are either // Parameters of the auction. Times are either
// absolute unix timestamps (seconds since 1970-01-01) // absolute unix timestamps (seconds since 1970-01-01)
// ore time periods in seconds. // or time periods in seconds.
address public beneficiary; address public beneficiary;
uint public auctionStart; uint public auctionStart;
uint public biddingTime; uint public biddingTime;