Skip to content

Commit 23b828b

Browse files
author
Owen Jones
committed
Fix spelling and punctuation
1 parent 9545b12 commit 23b828b

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/analyses/ai.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jsont ai_baset::output_json(
8686
}
8787

8888
/// Output the domains for a single function as JSON
89-
/// \par parameters: The namespace, goto_program and it's identifier
89+
/// \par parameters: The namespace, goto_program and its identifier
9090
/// \return The JSON object
9191
jsont ai_baset::output_json(
9292
const namespacet &ns,
@@ -145,7 +145,7 @@ xmlt ai_baset::output_xml(
145145
}
146146

147147
/// Output the domains for a single function as XML
148-
/// \par parameters: The namespace, goto_program and it's identifier
148+
/// \par parameters: The namespace, goto_program and its identifier
149149
/// \return The XML object
150150
xmlt ai_baset::output_xml(
151151
const namespacet &ns,
@@ -341,7 +341,7 @@ bool ai_baset::do_function_call(
341341

342342
if(!goto_function.body_available())
343343
{
344-
// if we don't have a body, we just do an edige call -> return
344+
// if we don't have a body, we just do an edge call -> return
345345
std::unique_ptr<statet> tmp_state(make_temporary_state(get_state(l_call)));
346346
tmp_state->transform(
347347
calling_function_identifier,

src/analyses/ai.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Author: Daniel Kroening, [email protected]
2525

2626
#include "ai_domain.h"
2727

28-
/// The basic interface of an abstract interpreter. This should be enough
28+
/// The basic interface of an abstract interpreter. This should be enough
2929
/// to create, run and query an abstract interpreter.
3030
// don't use me -- I am just a base class
3131
// use ait instead

src/analyses/ai_domain.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class ai_domain_baset
4646
/// (this also needs to set the LHS, if applicable)
4747
///
4848
/// "this" is the domain before the instruction "from"
49-
/// "from" is the instruction to be interpretted
49+
/// "from" is the instruction to be interpreted
5050
/// "to" is the next instruction (for GOTO, FUNCTION_CALL, END_FUNCTION)
5151
///
5252
/// PRECONDITION(from.is_dereferenceable(), "Must not be _::end()")

0 commit comments

Comments
 (0)