mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
corrected comments
This commit is contained in:
parent
dc605218da
commit
d216895025
@ -72,19 +72,17 @@ public:
|
|||||||
);
|
);
|
||||||
/// Get the ABI Interface of the contract
|
/// Get the ABI Interface of the contract
|
||||||
/// @param _contractDef The contract definition
|
/// @param _contractDef The contract definition
|
||||||
/// @return A unique pointer contained string with the json
|
/// @return A string with the json representation of the contract's ABI Interface
|
||||||
/// representation of the contract's ABI Interface
|
|
||||||
std::string getABIInterface(ContractDefinition const& _contractDef);
|
std::string getABIInterface(ContractDefinition const& _contractDef);
|
||||||
std::string getABISolidityInterface(ContractDefinition const& _contractDef);
|
std::string getABISolidityInterface(ContractDefinition const& _contractDef);
|
||||||
/// Get the User documentation of the contract
|
/// Get the User documentation of the contract
|
||||||
/// @param _contractDef The contract definition
|
/// @param _contractDef The contract definition
|
||||||
/// @return A unique pointer contained string with the json
|
/// @return A string with the json representation of the contract's user documentation
|
||||||
/// representation of the contract's user documentation
|
|
||||||
std::string userDocumentation(ContractDefinition const& _contractDef);
|
std::string userDocumentation(ContractDefinition const& _contractDef);
|
||||||
/// Genereates the Developer's documentation of the contract
|
/// Genereates the Developer's documentation of the contract
|
||||||
/// @param _contractDef The contract definition
|
/// @param _contractDef The contract definition
|
||||||
/// @return A unique pointer contained string with the json
|
/// @return A string with the json representation
|
||||||
/// representation of the contract's developer documentation
|
/// of the contract's developer documentation
|
||||||
std::string devDocumentation(ContractDefinition const& _contractDef);
|
std::string devDocumentation(ContractDefinition const& _contractDef);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
Loading…
Reference in New Issue
Block a user