diff options
author | chriseth <c@ethdev.com> | 2016-01-04 18:47:32 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2016-01-04 18:47:32 +0800 |
commit | cebd9bf23212b9c70df8b200f3f06661589d82ab (patch) | |
tree | e74c0f728ca58c425be2d5d467dc352e74d095ae | |
parent | e27bfa023d9aa398c3d0afcef6095082474e69fe (diff) | |
parent | 04eecdc73fe5eb3ef052f909df924efbbbcf1d29 (diff) | |
download | dexon-solidity-cebd9bf23212b9c70df8b200f3f06661589d82ab.tar.gz dexon-solidity-cebd9bf23212b9c70df8b200f3f06661589d82ab.tar.zst dexon-solidity-cebd9bf23212b9c70df8b200f3f06661589d82ab.zip |
Merge pull request #328 from guanqun/patch-1
[docs]: add an ending period
-rw-r--r-- | docs/introduction-to-smart-contracts.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/introduction-to-smart-contracts.rst b/docs/introduction-to-smart-contracts.rst index b0f1896a..711e7082 100644 --- a/docs/introduction-to-smart-contracts.rst +++ b/docs/introduction-to-smart-contracts.rst @@ -100,7 +100,7 @@ registering with username and password - all you need is an Ethereum keypair. } } -This contract introduces some new concepts, let us go through them one by one +This contract introduces some new concepts, let us go through them one by one. The line `address public minter;` declares a state variable of type address that is publicly accessible. The `address` type is a 160 bit value |