Skip to content

Commit 27f99ac

Browse files
committed
Docs: DataFlow: Add a missing qualifier
1 parent ee35bfb commit 27f99ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/codeql/writing-codeql-queries/debugging-data-flow-queries-using-partial-flow.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ To do quick evaluations of partial flow it is often easiest to add a predicate t
9595

9696
.. code-block:: ql
9797
98-
predicate adhocPartialFlow(Callable c, MyPartialFlow::PartialPathNode n, Node src, int dist) {
98+
predicate adhocPartialFlow(Callable c, MyPartialFlow::PartialPathNode n, DataFlow::Node src, int dist) {
9999
exists(MyPartialFlow::PartialPathNode source |
100100
MyPartialFlow::partialFlow(source, n, dist) and
101101
src = source.getNode() and

0 commit comments

Comments
 (0)