aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2018-07-16 16:38:16 +0800
committerGitHub <noreply@github.com>2018-07-16 16:38:16 +0800
commit98656423be9c22af44b788f0d273195788218416 (patch)
tree4a42e70db733cfec80131b87ec0215a5dcccf45e
parent31e56f9f9976cee44f000226318dca566f0f0b79 (diff)
parent7c1672f36ec3ae74884b7ba5be0651abdce23589 (diff)
downloaddexon-solidity-98656423be9c22af44b788f0d273195788218416.tar
dexon-solidity-98656423be9c22af44b788f0d273195788218416.tar.gz
dexon-solidity-98656423be9c22af44b788f0d273195788218416.tar.bz2
dexon-solidity-98656423be9c22af44b788f0d273195788218416.tar.lz
dexon-solidity-98656423be9c22af44b788f0d273195788218416.tar.xz
dexon-solidity-98656423be9c22af44b788f0d273195788218416.tar.zst
dexon-solidity-98656423be9c22af44b788f0d273195788218416.zip
Merge pull request #4511 from MichalZalecki/patch-1
Fix typo in the function name
-rw-r--r--docs/solidity-by-example.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/solidity-by-example.rst b/docs/solidity-by-example.rst
index b1985426..cd281aad 100644
--- a/docs/solidity-by-example.rst
+++ b/docs/solidity-by-example.rst
@@ -1035,7 +1035,7 @@ The full contract
/// if the timeout is reached without the recipient closing the channel,
/// then the Ether is released back to the sender.
- function clainTimeout() public {
+ function claimTimeout() public {
require(now >= expiration);
selfdestruct(sender);
}