diff options
author | Gav Wood <i@gavwood.com> | 2015-01-09 15:09:30 +0800 |
---|---|---|
committer | Gav Wood <i@gavwood.com> | 2015-01-09 15:09:30 +0800 |
commit | 8233c071f21040dd47ade1c46f8abe252b51f5a7 (patch) | |
tree | 6dac712ce3b7908b3bcdf4a7bd58323d2e2f2dd9 /CommandLineInterface.cpp | |
parent | 6de29142ef6b8839207b01f636c8a05285ab2151 (diff) | |
download | dexon-solidity-8233c071f21040dd47ade1c46f8abe252b51f5a7.tar dexon-solidity-8233c071f21040dd47ade1c46f8abe252b51f5a7.tar.gz dexon-solidity-8233c071f21040dd47ade1c46f8abe252b51f5a7.tar.bz2 dexon-solidity-8233c071f21040dd47ade1c46f8abe252b51f5a7.tar.lz dexon-solidity-8233c071f21040dd47ade1c46f8abe252b51f5a7.tar.xz dexon-solidity-8233c071f21040dd47ade1c46f8abe252b51f5a7.tar.zst dexon-solidity-8233c071f21040dd47ade1c46f8abe252b51f5a7.zip |
CLI tweaks.
Diffstat (limited to 'CommandLineInterface.cpp')
-rw-r--r-- | CommandLineInterface.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CommandLineInterface.cpp b/CommandLineInterface.cpp index 46a293a7..c03b60d4 100644 --- a/CommandLineInterface.cpp +++ b/CommandLineInterface.cpp @@ -160,7 +160,7 @@ void CommandLineInterface::handleMeta(DocumentationType _type, string const& _co case DocumentationType::ABI_INTERFACE: argName = g_argAbiStr; suffix = ".abi"; - title = "Contract ABI"; + title = "Contract JSON ABI"; break; case DocumentationType::ABI_SOLIDITY_INTERFACE: argName = g_argSolAbiStr; @@ -188,7 +188,7 @@ void CommandLineInterface::handleMeta(DocumentationType _type, string const& _co if (outputToStdout(choice)) { cout << title << endl; - cout << m_compiler.getMetadata(_contract, _type); + cout << m_compiler.getMetadata(_contract, _type) << endl; } if (outputToFile(choice)) |