Fixes named return natspec errors in compilation tests.

This commit is contained in:
Erik Kundt
2019-12-04 15:38:12 +01:00
committed by chriseth
parent e5cb0fe839
commit 19d466d6fb
5 changed files with 20 additions and 21 deletions
@@ -4,4 +4,4 @@ abstract contract C {
function vote(uint id) public virtual returns (uint value);
}
// ----
// DocstringParsingError: Doc tag "@return No value returned" does not contain the name of its return parameter.
// DocstringParsingError: Documentation tag "@return No value returned" does not contain the name of its return parameter.
@@ -4,4 +4,4 @@ abstract contract C {
function vote(uint id) public virtual returns (uint value);
}
// ----
// DocstringParsingError: Doc tag "@return No value returned" does not contain the name of its return parameter.
// DocstringParsingError: Documentation tag "@return No value returned" does not contain the name of its return parameter.