aboutsummaryrefslogtreecommitdiffstats
path: root/docs/solidity-by-example.rst
diff options
context:
space:
mode:
authorCryptomental <cryptomental.com@gmail.com>2018-07-10 15:17:33 +0800
committerCryptomental <cryptomental.com@gmail.com>2018-07-11 04:57:59 +0800
commiteb92d5f760995aef4c79fcaa3f8c2437718ffc7f (patch)
treecef370944f927172225a767a472afe75a626a349 /docs/solidity-by-example.rst
parentd454cec1bd8c95d0ab850a199bf9696dcebe14a5 (diff)
downloaddexon-solidity-eb92d5f760995aef4c79fcaa3f8c2437718ffc7f.tar.gz
dexon-solidity-eb92d5f760995aef4c79fcaa3f8c2437718ffc7f.tar.zst
dexon-solidity-eb92d5f760995aef4c79fcaa3f8c2437718ffc7f.zip
docs: Fix typos.
Used codespell and manual fixes. Refs: #4442
Diffstat (limited to 'docs/solidity-by-example.rst')
-rw-r--r--docs/solidity-by-example.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/solidity-by-example.rst b/docs/solidity-by-example.rst
index 07cb76c9..b1985426 100644
--- a/docs/solidity-by-example.rst
+++ b/docs/solidity-by-example.rst
@@ -679,7 +679,7 @@ Creating the signature
----------------------
Alice does not need to interact with Ethereum network to
-sign the transaction, the proccess is completely offline.
+sign the transaction, the process is completely offline.
In this tutorial, we will sign messages in the browser
using ``web3.js`` and ``MetaMask``.
In particular, we will use the standard way described in `EIP-762 <https://github.com/ethereum/EIPs/pull/712>`_,
@@ -1034,7 +1034,7 @@ The full contract
}
/// if the timeout is reached without the recipient closing the channel,
- /// then the Ether is realeased back to the sender.
+ /// then the Ether is released back to the sender.
function clainTimeout() public {
require(now >= expiration);
selfdestruct(sender);