From dac93ed6162cbc0e97666d293a982fa90e5bed81 Mon Sep 17 00:00:00 2001 From: Lefteris Karapetsas Date: Tue, 13 Jan 2015 17:54:09 +0100 Subject: [PATCH] Natspechandler: Get function hash from transaction data --- example/natspec_contract.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/natspec_contract.html b/example/natspec_contract.html index b8e3bc6174..94edda68dc 100644 --- a/example/natspec_contract.html +++ b/example/natspec_contract.html @@ -12,7 +12,7 @@ // solidity source code var source = "" + "contract test {\n" + - " /// @notice This is an awesome function for multiplication. \n" + + " /// @notice Will multiplty `a` by 7. \n" + " function multiply(uint a) returns(uint d) {\n" + " return a * 7;\n" + " }\n" +