Rename handleMeta to handleNatspec

This commit is contained in:
Alex Beregszaszi
2017-05-19 16:11:04 +01:00
parent cd5d93da2a
commit bbef2cd4a8
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -284,7 +284,7 @@ void CommandLineInterface::handleABI(string const& _contract)
cout << "Contract JSON ABI " << endl << data << endl;
}
void CommandLineInterface::handleMeta(DocumentationType _type, string const& _contract)
void CommandLineInterface::handleNatspec(DocumentationType _type, string const& _contract)
{
std::string argName;
std::string suffix;
@@ -1073,8 +1073,8 @@ void CommandLineInterface::outputCompilationResults()
handleSignatureHashes(contract);
handleOnChainMetadata(contract);
handleABI(contract);
handleMeta(DocumentationType::NatspecDev, contract);
handleMeta(DocumentationType::NatspecUser, contract);
handleNatspec(DocumentationType::NatspecDev, contract);
handleNatspec(DocumentationType::NatspecUser, contract);
} // end of contracts iteration
handleFormal();