Skip to content

Commit dad1c96

Browse files
committed
Docs: reword description of isSanitizer example
1 parent f0b2aac commit dad1c96

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/language/learn-ql/cpp/dataflow.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ The following data flow configuration tracks data flow from environment variable
244244
select fopen, "This 'fopen' uses data from $@.",
245245
getenv, "call to 'getenv'"
246246
247-
The following taint tracking configuration tracks data from a call to ``ntohl`` to an array index operation. It uses the ``Guards`` library to recognize expressions that have been bounds checked and avoid propagating taint through them. It also uses ``isAdditionalTaintStep`` to add flow from loop bounds to loop indexes.
247+
The following taint-tracking configuration tracks data from a call to ``ntohl`` to an array index operation. It uses the ``Guards`` library to recognize expressions that have been bounds-checked and defines ``isSanitizer`` to prevent taint from propagating through them. It also uses ``isAdditionalTaintStep`` to add flow from loop bounds to loop indexes.
248248

249249
.. code-block:: ql
250250

0 commit comments

Comments
 (0)