Skip to content

Commit a7641a8

Browse files
committed
C++: Clarify OutNode and ReturnNode QLDoc
1 parent 7c319ef commit a7641a8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cpp/ql/src/semmle/code/cpp/dataflow/internal/DataFlowPrivate.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ class ReturnKind extends TReturnKind {
7070
}
7171
}
7272

73-
/** A data flow node that represents a returned value. */
73+
/** A data flow node that represents a returned value in the called function. */
7474
abstract class ReturnNode extends Node {
7575
/** Gets the kind of this returned value. */
7676
abstract ReturnKind getKind();
@@ -93,7 +93,7 @@ private class RefReturnNode extends ReturnNode, RefParameterFinalValueNode {
9393
override ReturnKind getKind() { result = TRefReturnKind(this.getParameter().getIndex()) }
9494
}
9595

96-
/** A data flow node that represents the output of a call. */
96+
/** A data flow node that represents the output of a call at the call site. */
9797
abstract class OutNode extends Node {
9898
/** Gets the underlying call. */
9999
abstract DataFlowCall getCall();

0 commit comments

Comments
 (0)