spelling: execute

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref
2022-10-12 14:35:22 -04:00
parent de63bbc559
commit c527264198

View File

@@ -98,10 +98,10 @@ private module Aiopg {
* See https://aiopg.readthedocs.io/en/stable/sa.html#aiopg.sa.SAConnection.execute
*/
class AwaitedSAConnectionExecuteCall extends SqlExecution::Range {
SAConnectionExecuteCall excute;
SAConnectionExecuteCall execute;
AwaitedSAConnectionExecuteCall() { this = excute.getReturn().getAwaited().asSource() }
AwaitedSAConnectionExecuteCall() { this = execute.getReturn().getAwaited().asSource() }
override DataFlow::Node getSql() { result = excute.getSql() }
override DataFlow::Node getSql() { result = execute.getSql() }
}
}