diff options
author | Stu West <stu@automattic.com> | 2017-08-13 06:43:41 +0800 |
---|---|---|
committer | Stu West <stu@automattic.com> | 2017-08-13 06:43:41 +0800 |
commit | fdeb94a105f816325dd5901555e13f1e3bf381f6 (patch) | |
tree | 94070cc0b2ea416539cb35c85d0779c439c861e8 | |
parent | 52ccc264940c00ae8ffe015433bc1d094c1a4f1f (diff) | |
download | dexon-solidity-fdeb94a105f816325dd5901555e13f1e3bf381f6.tar.gz dexon-solidity-fdeb94a105f816325dd5901555e13f1e3bf381f6.tar.zst dexon-solidity-fdeb94a105f816325dd5901555e13f1e3bf381f6.zip |
docs typo: remove duplicate period and unnecessary spaces in intro
-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 1f1373cf..1a3cf638 100644 --- a/docs/introduction-to-smart-contracts.rst +++ b/docs/introduction-to-smart-contracts.rst @@ -35,7 +35,7 @@ Solidity version 0.4.0 or anything newer that does not break functionality (up to, but not including, version 0.5.0). This is to ensure that the contract does not suddenly behave differently with a new compiler version. The keyword ``pragma`` is called that way because, in general, pragmas are instructions for the compiler about how to treat the -source code (e.g. `pragma once <https://en.wikipedia.org/wiki/Pragma_once>`_). . +source code (e.g. `pragma once <https://en.wikipedia.org/wiki/Pragma_once>`_). A contract in the sense of Solidity is a collection of code (its *functions*) and data (its *state*) that resides at a specific address on the Ethereum |