diff --git a/tensorflow/core/graph/graph.h b/tensorflow/core/graph/graph.h index cbd58b051af..f7ca7d0620f 100644 --- a/tensorflow/core/graph/graph.h +++ b/tensorflow/core/graph/graph.h @@ -124,7 +124,8 @@ class Node { // Inputs requested by the NodeDef. For the actual inputs, use in_edges. const protobuf::RepeatedPtrField& requested_inputs() const; - // Get the neighboring nodes via edges either in or out of this node. + // Get the neighboring nodes via edges either in or out of this node. This + // includes control edges. gtl::iterator_range in_nodes() const; gtl::iterator_range out_nodes() const; const EdgeSet& in_edges() const { return in_edges_; }