From 94381c67b9c070d7580ccdda015b375e0495a3ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20V=C3=ADtor?= Date: Sun, 3 Jun 2018 17:57:15 -0300 Subject: fix returns --- 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 cad652dc..b1bc11d9 100644 --- a/docs/solidity-by-example.rst +++ b/docs/solidity-by-example.rst @@ -851,7 +851,7 @@ The full contract } /// builds a prefixed hash to mimic the behavior of eth_sign. - function prefixed(bytes32 hash) internal pure return (bytes32) { + function prefixed(bytes32 hash) internal pure returns (bytes32) { return keccak256("\x19Ethereum Signed Message:\n32", hash); } } -- cgit v1.2.3