aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/xla/service/tuple_points_to_analysis.h
diff options
context:
space:
mode:
authorGravatar Justin Lebar <jlebar@google.com>2017-10-26 14:16:10 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-10-26 14:21:44 -0700
commit2cbe1ffd23a0214492d182935212fc7c613e4a05 (patch)
tree92050d033e273132527ca6cb789dce4e564e3ff3 /tensorflow/compiler/xla/service/tuple_points_to_analysis.h
parent68b00b0be7e356ee30bf86a8a4a7807fa736dd6b (diff)
[XLA] Comment fixes (spelling, grammar, and a bit of correctness).
PiperOrigin-RevId: 173589267
Diffstat (limited to 'tensorflow/compiler/xla/service/tuple_points_to_analysis.h')
-rw-r--r--tensorflow/compiler/xla/service/tuple_points_to_analysis.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tensorflow/compiler/xla/service/tuple_points_to_analysis.h b/tensorflow/compiler/xla/service/tuple_points_to_analysis.h
index be45732952..30dabb56bd 100644
--- a/tensorflow/compiler/xla/service/tuple_points_to_analysis.h
+++ b/tensorflow/compiler/xla/service/tuple_points_to_analysis.h
@@ -44,7 +44,7 @@ namespace xla {
// A class describing the source(s) of the Buffer(s) contained in the output of
// a particular HLO instruction. The structure of PointsToSet mirrors the
-// structure of the instruction's shape which may be an arbitrary tree (eg, a
+// structure of the instruction's shape, which may be an arbitrary tree (eg, a
// nested tuple). Each node in this tree corresponds to a single buffer in the
// instruction's output and contains the set of Buffers which might define
// the corresponding buffer.
@@ -148,7 +148,7 @@ class PointsToSet {
ShapeTree<Elem> tree_;
// PointsToSet contains references (const LogicalBuffer*) to elements within
- // TuplePointsToAnalysis so disable copying.
+ // TuplePointsToAnalysis, so disable copying.
TF_DISALLOW_COPY_AND_ASSIGN(PointsToSet);
};