aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLiana Husikyan <liana@ethdev.com>2015-07-15 20:45:35 +0800
committerLiana Husikyan <liana@ethdev.com>2015-07-16 19:57:56 +0800
commitd21689502523b38c3625d6f3139b66baaf1c05cc (patch)
treecdab02876ba9e6be690811b7d1f9ca98b41ce54e
parentdc605218dac6f5d813da36ff3302d248ae7d1465 (diff)
downloaddexon-solidity-d21689502523b38c3625d6f3139b66baaf1c05cc.tar
dexon-solidity-d21689502523b38c3625d6f3139b66baaf1c05cc.tar.gz
dexon-solidity-d21689502523b38c3625d6f3139b66baaf1c05cc.tar.bz2
dexon-solidity-d21689502523b38c3625d6f3139b66baaf1c05cc.tar.lz
dexon-solidity-d21689502523b38c3625d6f3139b66baaf1c05cc.tar.xz
dexon-solidity-d21689502523b38c3625d6f3139b66baaf1c05cc.tar.zst
dexon-solidity-d21689502523b38c3625d6f3139b66baaf1c05cc.zip
corrected comments
-rw-r--r--InterfaceHandler.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/InterfaceHandler.h b/InterfaceHandler.h
index 222db5a0..49e92fcb 100644
--- a/InterfaceHandler.h
+++ b/InterfaceHandler.h
@@ -72,19 +72,17 @@ public:
);
/// Get the ABI Interface of the contract
/// @param _contractDef The contract definition
- /// @return A unique pointer contained string with the json
- /// representation of the contract's ABI Interface
+ /// @return A string with the json representation of the contract's ABI Interface
std::string getABIInterface(ContractDefinition const& _contractDef);
std::string getABISolidityInterface(ContractDefinition const& _contractDef);
/// Get the User documentation of the contract
/// @param _contractDef The contract definition
- /// @return A unique pointer contained string with the json
- /// representation of the contract's user documentation
+ /// @return A string with the json representation of the contract's user documentation
std::string userDocumentation(ContractDefinition const& _contractDef);
/// Genereates the Developer's documentation of the contract
/// @param _contractDef The contract definition
- /// @return A unique pointer contained string with the json
- /// representation of the contract's developer documentation
+ /// @return A string with the json representation
+ /// of the contract's developer documentation
std::string devDocumentation(ContractDefinition const& _contractDef);
private: