@@ -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 */
123123module 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 */
149149module 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 */
164164final class SqlSanitization = SqlSanitization:: Range ;
165165
@@ -168,7 +168,7 @@ final class SqlSanitization = SqlSanitization::Range;
168168 */
169169module 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}
0 commit comments