diff options
-rw-r--r-- | example/natspec_contract.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example/natspec_contract.html b/example/natspec_contract.html index b8e3bc617..94edda68d 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" + |