diff options
author | Denton Liu <liu.denton+github@gmail.com> | 2016-08-12 23:44:45 +0800 |
---|---|---|
committer | Denton Liu <liu.denton+github@gmail.com> | 2016-08-24 23:43:55 +0800 |
commit | 72f27995565c25efde02826fdafa87a8ad907e78 (patch) | |
tree | 105a15d9f660134469370b7cb2f93794a0e8f64d /docs | |
parent | c58e460ba2aad998568168dd954a29e858d27ff2 (diff) | |
download | dexon-solidity-72f27995565c25efde02826fdafa87a8ad907e78.tar.gz dexon-solidity-72f27995565c25efde02826fdafa87a8ad907e78.tar.zst dexon-solidity-72f27995565c25efde02826fdafa87a8ad907e78.zip |
Fix typo
Diffstat (limited to 'docs')
-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 0122387b..c0b596ee 100644 --- a/docs/introduction-to-smart-contracts.rst +++ b/docs/introduction-to-smart-contracts.rst @@ -300,7 +300,7 @@ If the target account is the zero-account (the account with the address ``0``), the transaction creates a **new contract**. As already mentioned, the address of that contract is not the zero address but an address derived from the sender and -its number of transaction sent (the "nonce"). The payload +its number of transactions sent (the "nonce"). The payload of such a contract creation transaction is taken to be EVM bytecode and executed. The output of this execution is permanently stored as the code of the contract. |