Python: correct qldoc

This commit is contained in:
Rasmus Lerchedahl Petersen
2021-10-27 11:40:57 +02:00
parent c850554467
commit 01ad19b82b

View File

@@ -341,7 +341,7 @@ class SqlConstruction extends DataFlow::Node {
SqlConstruction() { this = range }
/** Gets the argument that specifies the SQL statements to be executed. */
/** Gets the argument that specifies the SQL statements to be constructed. */
DataFlow::Node getSql() { result = range.getSql() }
}
@@ -356,7 +356,7 @@ module SqlConstruction {
* extend `SqlExecution` instead.
*/
abstract class Range extends DataFlow::Node {
/** Gets the argument that specifies the SQL statements to be executed. */
/** Gets the argument that specifies the SQL statements to be constructed. */
abstract DataFlow::Node getSql();
}
}