diff options
author | chriseth <chris@ethereum.org> | 2017-08-24 21:08:31 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2017-09-16 19:31:12 +0800 |
commit | 6385641f6e461a1964da793956fbe0ef8cddadd3 (patch) | |
tree | 249b9de69b5c799bbe35032ff6820780ea790a58 /libsolidity | |
parent | 44825d1c1ecef6ea3fa27da6330c12dcf4279fb3 (diff) | |
download | dexon-solidity-6385641f6e461a1964da793956fbe0ef8cddadd3.tar dexon-solidity-6385641f6e461a1964da793956fbe0ef8cddadd3.tar.gz dexon-solidity-6385641f6e461a1964da793956fbe0ef8cddadd3.tar.bz2 dexon-solidity-6385641f6e461a1964da793956fbe0ef8cddadd3.tar.lz dexon-solidity-6385641f6e461a1964da793956fbe0ef8cddadd3.tar.xz dexon-solidity-6385641f6e461a1964da793956fbe0ef8cddadd3.tar.zst dexon-solidity-6385641f6e461a1964da793956fbe0ef8cddadd3.zip |
Fix tests.
Diffstat (limited to 'libsolidity')
-rw-r--r-- | libsolidity/ast/Types.h | 2 | ||||
-rw-r--r-- | libsolidity/interface/ABI.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libsolidity/ast/Types.h b/libsolidity/ast/Types.h index 0713f527..dd50c573 100644 --- a/libsolidity/ast/Types.h +++ b/libsolidity/ast/Types.h @@ -248,7 +248,7 @@ public: /// @returns the canonical name of this type for use in library function signatures. virtual std::string canonicalName() const { return toString(true); } /// @returns the signature of this type in external functions, i.e. `uint256` for integers - /// or `(uint256, bytes8)[2]` for an array of structs. If @a _structsByName, + /// or `(uint256,bytes8)[2]` for an array of structs. If @a _structsByName, /// structs are given by canonical name like `ContractName.StructName[2]`. virtual std::string signatureInExternalFunction(bool /*_structsByName*/) const { diff --git a/libsolidity/interface/ABI.h b/libsolidity/interface/ABI.h index 7e42909b..db70729d 100644 --- a/libsolidity/interface/ABI.h +++ b/libsolidity/interface/ABI.h @@ -50,7 +50,7 @@ private: std::vector<TypePointer> const& _types, bool _forLibrary ); - /// @returns a Json object with "name", "type" and potentially "subtype" keys, according + /// @returns a Json object with "name", "type" and potentially "components" keys, according /// to the ABI specification. /// If it is possible to express the type as a single string, it is allowed to return a single string. static Json::Value formatType(std::string const& _name, Type const& _type, bool _forLibrary); |