diff options
author | chriseth <chris@ethereum.org> | 2018-09-04 18:03:41 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-04 18:03:41 +0800 |
commit | f27d7edfd605ac04e04eafded93a9a4e81f20122 (patch) | |
tree | 2a1d574620753aa4be93f60bb9372fe0d48257fe /test/libsolidity | |
parent | 2783905babfbe2fd01ff5f7b2a2499bd13754f10 (diff) | |
parent | b4a02522a46a774d0bd201c5a9c312bf3aeb2565 (diff) | |
download | dexon-solidity-f27d7edfd605ac04e04eafded93a9a4e81f20122.tar dexon-solidity-f27d7edfd605ac04e04eafded93a9a4e81f20122.tar.gz dexon-solidity-f27d7edfd605ac04e04eafded93a9a4e81f20122.tar.bz2 dexon-solidity-f27d7edfd605ac04e04eafded93a9a4e81f20122.tar.lz dexon-solidity-f27d7edfd605ac04e04eafded93a9a4e81f20122.tar.xz dexon-solidity-f27d7edfd605ac04e04eafded93a9a4e81f20122.tar.zst dexon-solidity-f27d7edfd605ac04e04eafded93a9a4e81f20122.zip |
Merge pull request #4882 from ethereum/removeTrailingWhitespace
Remove trailing whitespace for all files in the repository.
Diffstat (limited to 'test/libsolidity')
-rw-r--r-- | test/libsolidity/SolidityNatspecJSON.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/libsolidity/SolidityNatspecJSON.cpp b/test/libsolidity/SolidityNatspecJSON.cpp index b97df972..d77050cb 100644 --- a/test/libsolidity/SolidityNatspecJSON.cpp +++ b/test/libsolidity/SolidityNatspecJSON.cpp @@ -647,7 +647,7 @@ BOOST_AUTO_TEST_CASE(dev_documenting_no_paramname) contract test { /// @dev Multiplies a number by 7 and adds second parameter /// @param a Documentation for the first parameter - /// @param + /// @param function mul(uint a, uint second) public returns (uint d) { return a * 7 + second; } } )"; @@ -675,7 +675,7 @@ BOOST_AUTO_TEST_CASE(dev_documenting_no_param_description) contract test { /// @dev Multiplies a number by 7 and adds second parameter /// @param a Documentation for the first parameter - /// @param second + /// @param second function mul(uint a, uint second) public returns (uint d) { return a * 7 + second; } } )"; |