From 66cb1b76580bf96461b428190dfdccf178c4451b Mon Sep 17 00:00:00 2001 From: Liana Husikyan Date: Wed, 15 Jul 2015 14:45:35 +0200 Subject: [PATCH] corrected comments --- libsolidity/InterfaceHandler.h | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/libsolidity/InterfaceHandler.h b/libsolidity/InterfaceHandler.h index 222db5a0e..49e92fcb0 100644 --- a/libsolidity/InterfaceHandler.h +++ b/libsolidity/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: