@@ -105,7 +105,7 @@ module RemoteSource {
105
105
}
106
106
107
107
/**
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).
109
109
*
110
110
* Often, it is worthy of an alert if a SQL statement is constructed such that
111
111
* executing it would be a security risk.
@@ -122,7 +122,7 @@ final class SqlConstruction = SqlConstruction::Range;
122
122
*/
123
123
module SqlConstruction {
124
124
/**
125
- * A data- flow node that constructs a SQL statement.
125
+ * A data flow node that constructs a SQL statement.
126
126
*/
127
127
abstract class Range extends DataFlow:: Node {
128
128
/**
@@ -133,7 +133,7 @@ module SqlConstruction {
133
133
}
134
134
135
135
/**
136
- * A data- flow node that constructs and executes SQL statements.
136
+ * A data flow node that constructs and executes SQL statements.
137
137
*
138
138
* If the context of interest is such that merely constructing a SQL statement
139
139
* would be valuable to report, consider also using `SqlConstruction`.
@@ -148,7 +148,7 @@ final class SqlExecution = SqlExecution::Range;
148
148
*/
149
149
module SqlExecution {
150
150
/**
151
- * A data- flow node that executes SQL statements.
151
+ * A data flow node that executes SQL statements.
152
152
*/
153
153
abstract class Range extends DataFlow:: Node {
154
154
/**
@@ -159,7 +159,7 @@ module SqlExecution {
159
159
}
160
160
161
161
/**
162
- * A data- flow node that performs SQL sanitization.
162
+ * A data flow node that performs SQL sanitization.
163
163
*/
164
164
final class SqlSanitization = SqlSanitization:: Range ;
165
165
@@ -168,7 +168,7 @@ final class SqlSanitization = SqlSanitization::Range;
168
168
*/
169
169
module SqlSanitization {
170
170
/**
171
- * A data- flow node that performs SQL sanitization.
171
+ * A data flow node that performs SQL sanitization.
172
172
*/
173
173
abstract class Range extends DataFlow:: Node { }
174
174
}
0 commit comments