diff options
author | chriseth <chris@ethereum.org> | 2016-12-13 04:43:04 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-13 04:43:04 +0800 |
commit | c111d6e27e7a951d49e587d0984fc8c24898c18f (patch) | |
tree | b4a4fc730a3ff79c1ff983e75324020503f81eab /libsolidity | |
parent | e62b98646f08c52bfa2cb06db75d6ba0da5be81d (diff) | |
parent | e5a992937c80c91c9b217bc53802d78d0d9069b7 (diff) | |
download | dexon-solidity-c111d6e27e7a951d49e587d0984fc8c24898c18f.tar.gz dexon-solidity-c111d6e27e7a951d49e587d0984fc8c24898c18f.tar.zst dexon-solidity-c111d6e27e7a951d49e587d0984fc8c24898c18f.zip |
Merge pull request #1491 from ameten/refactoring
Just refactored some code
Diffstat (limited to 'libsolidity')
-rw-r--r-- | libsolidity/interface/CompilerStack.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libsolidity/interface/CompilerStack.cpp b/libsolidity/interface/CompilerStack.cpp index eb588fc2..0b8cecc7 100644 --- a/libsolidity/interface/CompilerStack.cpp +++ b/libsolidity/interface/CompilerStack.cpp @@ -146,7 +146,7 @@ bool CompilerStack::parse() } } if (!Error::containsOnlyWarnings(m_errors)) - // errors while parsing. sould stop before type checking + // errors while parsing. should stop before type checking return false; resolveImports(); |