Correction one more mention of tutorials

This commit is contained in:
Felicity Chapman
2020-02-19 16:35:59 +00:00
committed by GitHub
parent f8c876176a
commit 552d2edb5b

View File

@@ -109,7 +109,7 @@ Example finding mutually exclusive blocks within the same function
)
select b1, b2
`See this in the query console <https://lgtm.com/query/671000028/>`__. This typically gives a very large number of results, because it is a common occurrence in normal control flow. It is, however, an example of the sort of control-flow analysis that is possible. Control-flow analyses such as this are an important aid to data flow analysis which is covered in the next tutorial.
`See this in the query console <https://lgtm.com/query/671000028/>`__. This typically gives a very large number of results, because it is a common occurrence in normal control flow. It is, however, an example of the sort of control-flow analysis that is possible. Control-flow analyses such as this are an important aid to data flow analysis. For more information, see :doc:`Analyzing data flow and tracking tainted data in Python <taint-tracking>`.
Further reading
---------------