Update python/ql/src/semmle/python/dataflow/new/internal/DataFlowPublic.qll

Co-authored-by: Rasmus Wriedt Larsen <rasmuswriedtlarsen@gmail.com>
This commit is contained in:
Taus
2021-02-15 14:21:12 +01:00
committed by GitHub
parent 27c479a8ba
commit 2ca12aa612

View File

@@ -175,7 +175,7 @@ class CallCfgNode extends CfgNode {
*/
Node getFunction() { result.asCfgNode() = node.getFunction() }
/** Gets the data-flow node corresponding to the nth argument of the call corresponding to this data-flow node */
/** Gets the data-flow node corresponding to the i'th argument of the call corresponding to this data-flow node */
Node getArg(int i) { result.asCfgNode() = node.getArg(i) }
/** Gets the data-flow node corresponding to the named argument of the call corresponding to this data-flow node */