diff options
author | F. Eugene Aumson <gene@aumson.org> | 2018-08-30 21:02:00 +0800 |
---|---|---|
committer | F. Eugene Aumson <gene@aumson.org> | 2018-08-30 22:43:43 +0800 |
commit | 29f2ae605edadedbd150cc6df7aafffdef6a48a3 (patch) | |
tree | 06c40f0ee2640af26a9a2908f2607945818e4262 /packages/sol-compiler/src | |
parent | 6450844d7fc39561671dd72f036a436f8bc2f664 (diff) | |
download | dexon-sol-tools-29f2ae605edadedbd150cc6df7aafffdef6a48a3.tar dexon-sol-tools-29f2ae605edadedbd150cc6df7aafffdef6a48a3.tar.gz dexon-sol-tools-29f2ae605edadedbd150cc6df7aafffdef6a48a3.tar.bz2 dexon-sol-tools-29f2ae605edadedbd150cc6df7aafffdef6a48a3.tar.lz dexon-sol-tools-29f2ae605edadedbd150cc6df7aafffdef6a48a3.tar.xz dexon-sol-tools-29f2ae605edadedbd150cc6df7aafffdef6a48a3.tar.zst dexon-sol-tools-29f2ae605edadedbd150cc6df7aafffdef6a48a3.zip |
re-word comment: 'construction' -> 'instantiation'
Diffstat (limited to 'packages/sol-compiler/src')
-rw-r--r-- | packages/sol-compiler/src/compiler.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/sol-compiler/src/compiler.ts b/packages/sol-compiler/src/compiler.ts index ced139909..d2977c691 100644 --- a/packages/sol-compiler/src/compiler.ts +++ b/packages/sol-compiler/src/compiler.ts @@ -162,7 +162,7 @@ export class Compiler { await this._compileContractsAsync(this._getContractNamesToCompile(), true); } /** - * Compiles Solidity files specified during construction, and returns the + * Compiles Solidity files specified during instantiation, and returns the * compiler output given by solc. Return value is an array of outputs: * Solidity modules are batched together by version required, and each * element of the returned array corresponds to a compiler version, and |