From 66c8c15a7f401003bf492e846179a732761039b6 Mon Sep 17 00:00:00 2001 From: Dave Hoover Date: Mon, 11 Apr 2016 17:51:28 -0500 Subject: Tiny fix --- docs/introduction-to-smart-contracts.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/introduction-to-smart-contracts.rst b/docs/introduction-to-smart-contracts.rst index 22dbbcb7..cecd6b91 100644 --- a/docs/introduction-to-smart-contracts.rst +++ b/docs/introduction-to-smart-contracts.rst @@ -122,7 +122,7 @@ get the idea - the compiler figures that out for you. .. index:: mapping 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. Mappings can be seen as hashtables which are virtually initialized such that every possible key exists and is mapped to a -- cgit v1.2.3 From 9af44f457c30ce60962daf78cfc97569b7ec34da Mon Sep 17 00:00:00 2001 From: Dave Hoover Date: Mon, 11 Apr 2016 20:08:29 -0500 Subject: Typo fix --- docs/solidity-by-example.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/solidity-by-example.rst b/docs/solidity-by-example.rst index 63c82798..59400f3f 100644 --- a/docs/solidity-by-example.rst +++ b/docs/solidity-by-example.rst @@ -199,7 +199,7 @@ activate themselves. contract SimpleAuction { // Parameters of the auction. Times are either // absolute unix timestamps (seconds since 1970-01-01) - // ore time periods in seconds. + // or time periods in seconds. address public beneficiary; uint public auctionStart; uint public biddingTime; -- cgit v1.2.3