From 7c1672f36ec3ae74884b7ba5be0651abdce23589 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Za=C5=82=C4=99cki?= Date: Sat, 14 Jul 2018 18:32:47 +0200 Subject: Fix typo in the function name --- docs/solidity-by-example.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs') 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); } -- cgit v1.2.3