Skip to content

Commit dfe77f8

Browse files
committed
fix errors in debugging-data-flow-queries-using-partial-flow.rst
1 parent c94bfc3 commit dfe77f8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ A typical data-flow query looks like this:
1010

1111
.. code-block:: ql
1212
13-
::
1413
1514
class MyConfig extends TaintTracking::Configuration {
1615
MyConfig() { this = "MyConfig" }
@@ -79,7 +78,8 @@ To avoid these problems, a data-flow ``Configuration`` comes with a mechanism fo
7978
*/
8079
final predicate hasPartialFlow(PartialPathNode source, PartialPathNode node, int dist) {
8180
82-
As noted in the documentation for ``hasPartialFlow`` (for example, in the `CodeQL for Java documentation <https://codeql.github.com/codeql-standard-libraries/java/semmle/code/java/dataflow/internal/DataFlowImpl2.qll/predicate.DataFlowImpl2$Configuration$hasPartialFlow.3.html>__`) you must first enable this by adding an override of ``explorationLimit``. For example:
81+
As noted in the documentation for ``hasPartialFlow`` (for example, in the
82+
`CodeQL for Java documentation <https://codeql.github.com/codeql-standard-libraries/java/semmle/code/java/dataflow/internal/DataFlowImpl2.qll/predicate.DataFlowImpl2$Configuration$hasPartialFlow.3.html>`__) you must first enable this by adding an override of ``explorationLimit``. For example:
8383

8484
.. code-block:: ql
8585

0 commit comments

Comments
 (0)