Skip to content

Commit 14c64a8

Browse files
authored
Update SymbolicTypes.cpp
1 parent 6daaff7 commit 14c64a8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

libsolidity/formal/SymbolicTypes.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -126,15 +126,15 @@ SortPointer smtSort(frontend::Type const& _type)
126126
tupleName = tupleSort->name;
127127
else if (isContract(*baseType))
128128
// use a common sort for contracts so inheriting contracts do not cause conflicting SMT types
129-
// solc handles types mismtach
129+
// solc handles types mismatch
130130
tupleName = "contract";
131131
else if (isFunction(*baseType))
132132
// use a common sort for functions so pure and view modifier do not cause conflicting SMT types
133-
// solc handles types mismtach
133+
// solc handles types mismatch
134134
tupleName = "function";
135135
else if (isAddress(*baseType))
136136
// use a common sort for address and address payable so it does not cause conflicting SMT types
137-
// solc handles types mismtach
137+
// solc handles types mismatch
138138
tupleName = "address";
139139
else if (
140140
baseType->category() == frontend::Type::Category::Integer ||

0 commit comments

Comments
 (0)