File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -126,15 +126,15 @@ SortPointer smtSort(frontend::Type const& _type)
126
126
tupleName = tupleSort->name ;
127
127
else if (isContract (*baseType))
128
128
// 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
130
130
tupleName = " contract" ;
131
131
else if (isFunction (*baseType))
132
132
// 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
134
134
tupleName = " function" ;
135
135
else if (isAddress (*baseType))
136
136
// 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
138
138
tupleName = " address" ;
139
139
else if (
140
140
baseType->category () == frontend::Type::Category::Integer ||
You can’t perform that action at this time.
0 commit comments