Skip to content

Commit ee07f0a

Browse files
committed
Fix typo "bitvector with" -> "bitvector width"
One case was pre-existing, the second was the result of copy&paste.
1 parent acde1a8 commit ee07f0a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/solvers/flattening/boolbv_typecast.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ bool boolbvt::type_conversion(
260260
{
261261
INVARIANT(
262262
src_width == dest_width,
263-
"source bitvector with shall equal the destination bitvector width");
263+
"source bitvector width shall equal the destination bitvector width");
264264
dest=src;
265265
return false;
266266
}
@@ -418,7 +418,7 @@ bool boolbvt::type_conversion(
418418
case bvtypet::IS_BV:
419419
INVARIANT(
420420
src_width == dest_width,
421-
"source bitvector with shall equal the destination bitvector width");
421+
"source bitvector width shall equal the destination bitvector width");
422422
dest = src;
423423
return false;
424424

0 commit comments

Comments
 (0)