Skip to content

Commit 31bc426

Browse files
committed
C++: Fix QLDoc.
1 parent 97f0c75 commit 31bc426

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

cpp/ql/lib/semmle/code/cpp/ir/dataflow/internal/DataFlowUtil.qll

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -667,7 +667,7 @@ class SsaPhiNode extends Node, TSsaPhiNode {
667667
/**
668668
* INTERNAL: Do not use.
669669
*
670-
* A note that is used as an input to a phi node.
670+
* A node that is used as an input to a phi node.
671671
*
672672
* This class exists to allow more powerful barrier guards. Consider this
673673
* example:
@@ -684,9 +684,9 @@ class SsaPhiNode extends Node, TSsaPhiNode {
684684
* At the phi node for `x` it is neither the case that `x` is dominated by
685685
* `safe(x)`, or is the case that the phi is dominated by a clearing of `x`.
686686
*
687-
* However, by inserting an "phi input" nodes as the last entry in the basic
688-
* block that defines the inputs to the phi we can conclude that each of those
689-
* inputs are safe to pass to `sink`.
687+
* By inserting a "phi input" node as the last entry in the basic block that
688+
* defines the inputs to the phi we can conclude that each of those inputs are
689+
* safe to pass to `sink`.
690690
*/
691691
class SsaPhiInputNode extends Node, TSsaPhiInputNode {
692692
Ssa::PhiNode phi;

0 commit comments

Comments
 (0)