We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d261cec commit 6377e92Copy full SHA for 6377e92
javascript/ql/lib/semmle/javascript/dataflow/DataFlow.qll
@@ -1293,7 +1293,7 @@ module DataFlow {
1293
override DataFlow::Node getCalleeNode() { result = DataFlow::valueNode(astNode.getTag()) }
1294
1295
override DataFlow::Node getArgument(int i) {
1296
- // the first parameter send to the function is the string parts, which we don't model.
+ // the first argument sent to the function is the array of string parts, which we don't model.
1297
// rank is 1-indexed, which is perfect here.
1298
result =
1299
DataFlow::valueNode(rank[i](Expr e, int index |
0 commit comments