diff options
-rw-r--r-- | libsolidity/SolidityNatspecJSON.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libsolidity/SolidityNatspecJSON.cpp b/libsolidity/SolidityNatspecJSON.cpp index 2fc4f77b..73c080f7 100644 --- a/libsolidity/SolidityNatspecJSON.cpp +++ b/libsolidity/SolidityNatspecJSON.cpp @@ -495,7 +495,7 @@ BOOST_AUTO_TEST_CASE(natspec_notice_without_tag) { "methods" : { "mul(uint256)" : { - "notice" : " I do something awesome" + "notice" : "I do something awesome" } } } @@ -518,11 +518,10 @@ BOOST_AUTO_TEST_CASE(natspec_multiline_notice_without_tag) { "methods" : { "mul(uint256)" : { - "notice" : " I do something awesome which requires two lines to explain" + "notice" : "I do something awesome which requires two lines to explain" } } } - )ABCDEF"; checkNatspec(sourceCode, natspec, true); |