Skip to content

Commit 1d72b75

Browse files
committed
Rust: data-flow -> data flow.
1 parent d2cfcb4 commit 1d72b75

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

rust/ql/lib/codeql/rust/Concepts.qll

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ module RemoteSource {
105105
}
106106

107107
/**
108-
* A data-flow node that constructs a SQL statement (for later execution).
108+
* A data flow node that constructs a SQL statement (for later execution).
109109
*
110110
* Often, it is worthy of an alert if a SQL statement is constructed such that
111111
* executing it would be a security risk.
@@ -122,7 +122,7 @@ final class SqlConstruction = SqlConstruction::Range;
122122
*/
123123
module SqlConstruction {
124124
/**
125-
* A data-flow node that constructs a SQL statement.
125+
* A data flow node that constructs a SQL statement.
126126
*/
127127
abstract class Range extends DataFlow::Node {
128128
/**
@@ -133,7 +133,7 @@ module SqlConstruction {
133133
}
134134

135135
/**
136-
* A data-flow node that constructs and executes SQL statements.
136+
* A data flow node that constructs and executes SQL statements.
137137
*
138138
* If the context of interest is such that merely constructing a SQL statement
139139
* would be valuable to report, consider also using `SqlConstruction`.
@@ -148,7 +148,7 @@ final class SqlExecution = SqlExecution::Range;
148148
*/
149149
module SqlExecution {
150150
/**
151-
* A data-flow node that executes SQL statements.
151+
* A data flow node that executes SQL statements.
152152
*/
153153
abstract class Range extends DataFlow::Node {
154154
/**
@@ -159,7 +159,7 @@ module SqlExecution {
159159
}
160160

161161
/**
162-
* A data-flow node that performs SQL sanitization.
162+
* A data flow node that performs SQL sanitization.
163163
*/
164164
final class SqlSanitization = SqlSanitization::Range;
165165

@@ -168,7 +168,7 @@ final class SqlSanitization = SqlSanitization::Range;
168168
*/
169169
module SqlSanitization {
170170
/**
171-
* A data-flow node that performs SQL sanitization.
171+
* A data flow node that performs SQL sanitization.
172172
*/
173173
abstract class Range extends DataFlow::Node { }
174174
}

rust/ql/lib/codeql/rust/dataflow/internal/DataFlowImpl.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ module Node {
330330
override ReturnKind getKind() { result = rk }
331331
}
332332

333-
/** A data-flow node that represents the output of a call. */
333+
/** A data flow node that represents the output of a call. */
334334
abstract class OutNode extends Node {
335335
/** Gets the underlying call for this node. */
336336
abstract DataFlowCall getCall(ReturnKind kind);

0 commit comments

Comments
 (0)