Skip to content

Commit 9b6dd60

Browse files
authored
Address incorrectly reference parameter in QLdoc
The qldoc of the predicate `isParameterOf` mentions the parameter `fd` that does not exists and is possible replaced by `c`
1 parent 79e6f78 commit 9b6dd60

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ql/lib/semmle/go/dataflow/internal/DataFlowNodes.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -558,7 +558,7 @@ module Public {
558558

559559
/** A representation of a parameter initialization. */
560560
abstract class ParameterNode extends DataFlow::Node {
561-
/** Holds if this node initializes the `i`th parameter of `fd`. */
561+
/** Holds if this node initializes the `i`th parameter of `c`. */
562562
abstract predicate isParameterOf(Callable c, int i);
563563
}
564564

0 commit comments

Comments
 (0)