Merge pull request #711 from rverme/patch-1

Address incorrectly referenced parameter in QLdoc
This commit is contained in:
Chris Smowton
2022-04-01 11:22:57 +01:00
committed by GitHub

View File

@@ -558,7 +558,7 @@ module Public {
/** A representation of a parameter initialization. */
abstract class ParameterNode extends DataFlow::Node {
/** Holds if this node initializes the `i`th parameter of `fd`. */
/** Holds if this node initializes the `i`th parameter of `c`. */
abstract predicate isParameterOf(Callable c, int i);
}