docs: remove extra comma in dataflow articles

(cherry picked from commit e882060839)
This commit is contained in:
Rasmus Wriedt Larsen
2020-01-08 14:53:31 +01:00
committed by james
parent 24e551905e
commit cdcca630f3
2 changed files with 2 additions and 2 deletions

View File

@@ -45,7 +45,7 @@ or using the predicates ``exprNode`` and ``parameterNode``:
*/
ParameterNode parameterNode(Parameter p) { ... }
The predicate ``localFlowStep(Node nodeFrom, Node, nodeTo)`` holds if there is an immediate data flow edge from the node ``nodeFrom`` to the node ``nodeTo``. The predicate can be applied recursively (using the ``+`` and ``*`` operators), or through the predefined recursive predicate ``localFlow``, which is equivalent to ``localFlowStep*``.
The predicate ``localFlowStep(Node nodeFrom, Node nodeTo)`` holds if there is an immediate data flow edge from the node ``nodeFrom`` to the node ``nodeTo``. The predicate can be applied recursively (using the ``+`` and ``*`` operators), or through the predefined recursive predicate ``localFlow``, which is equivalent to ``localFlowStep*``.
For example, finding flow from a parameter ``source`` to an expression ``sink`` in zero or more local steps can be achieved as follows: