AsmParser,TypeChecker: Fix typos.

Fix typos. The change requested as a separate PR during codespell PR.
Adapt tests as well.

Refs: #4442
This commit is contained in:
Cryptomental
2018-07-10 12:33:19 +02:00
parent f6edb7fb8f
commit a55abb550d
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -267,7 +267,7 @@ BOOST_AUTO_TEST_CASE(recursion_depth)
BOOST_AUTO_TEST_CASE(multiple_assignment)
{
CHECK_ERROR("{ let x:u256 function f() -> a:u256, b:u256 {} 123:u256, x := f() }", ParserError, "Label name / variable name must precede \",\" (multiple assignment).");
CHECK_ERROR("{ let x:u256 function f() -> a:u256, b:u256 {} x, 123:u256 := f() }", ParserError, "Variable name expected in multiple assignemnt.");
CHECK_ERROR("{ let x:u256 function f() -> a:u256, b:u256 {} x, 123:u256 := f() }", ParserError, "Variable name expected in multiple assignment.");
/// NOTE: Travis hiccups if not having a variable
char const* text = R"(