aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/inlineasm/AsmParser.cpp
diff options
context:
space:
mode:
authorCryptomental <cryptomental.com@gmail.com>2018-07-10 17:24:24 +0800
committerCryptomental <cryptomental.com@gmail.com>2018-07-10 18:33:19 +0800
commita55abb550dca6b17d74bf0b5947e1947a99e4e95 (patch)
tree0b87a07572ae7ba47775f33374fdd7fbbdfb7706 /libsolidity/inlineasm/AsmParser.cpp
parentf6edb7fb8f3f86f527d20bbe7b0e55d2c560ba90 (diff)
downloaddexon-solidity-a55abb550dca6b17d74bf0b5947e1947a99e4e95.tar.gz
dexon-solidity-a55abb550dca6b17d74bf0b5947e1947a99e4e95.tar.zst
dexon-solidity-a55abb550dca6b17d74bf0b5947e1947a99e4e95.zip
AsmParser,TypeChecker: Fix typos.
Fix typos. The change requested as a separate PR during codespell PR. Adapt tests as well. Refs: #4442
Diffstat (limited to 'libsolidity/inlineasm/AsmParser.cpp')
-rw-r--r--libsolidity/inlineasm/AsmParser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libsolidity/inlineasm/AsmParser.cpp b/libsolidity/inlineasm/AsmParser.cpp
index 7df9ab88..cd429a98 100644
--- a/libsolidity/inlineasm/AsmParser.cpp
+++ b/libsolidity/inlineasm/AsmParser.cpp
@@ -150,7 +150,7 @@ assembly::Statement Parser::parseStatement()
expectToken(Token::Comma);
elementary = parseElementaryOperation();
if (elementary.type() != typeid(assembly::Identifier))
- fatalParserError("Variable name expected in multiple assignemnt.");
+ fatalParserError("Variable name expected in multiple assignment.");
assignment.variableNames.emplace_back(boost::get<assembly::Identifier>(elementary));
}
while (currentToken() == Token::Comma);