Skip to content

Commit e18ac13

Browse files
author
Daniel Kroening
authored
Merge pull request #3573 from peterschrammel/fix-typos-goto-symex
Fix typos
2 parents 58d440a + fd51f50 commit e18ac13

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/goto-symex/symex_assign.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ void goto_symext::symex_assign(
4343

4444
DATA_INVARIANT(
4545
!side_effect_expr.operands().empty(),
46-
"function call stamement expects non-empty list of side effects");
46+
"function call statement expects non-empty list of side effects");
4747

4848
DATA_INVARIANT(
4949
function_call.function().id() == ID_symbol,

src/goto-symex/symex_goto.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -468,7 +468,7 @@ static void merge_names(
468468
// Don't add a conditional to the assignment when:
469469
// 1. Either guard is false, so we can't follow that branch.
470470
// 2. Either identifier is of generation zero, and so hasn't been
471-
// initialized and therefor an invalid target.
471+
// initialized and therefore an invalid target.
472472
if(dest_state.guard.is_false())
473473
rhs = goto_state_rhs;
474474
else if(goto_state.guard.is_false())

0 commit comments

Comments
 (0)