aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/c/c_api.h
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2017-07-28 13:55:58 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-07-28 14:00:13 -0700
commit92620dfc79b7e18f608da99ded9752fb5d758271 (patch)
tree9094c6f507ae1a002411c34ea20345f83f34d3e2 /tensorflow/c/c_api.h
parent022413e56fd1ee03ce403e67440dcf3474765c13 (diff)
Minor comment improvement.
PiperOrigin-RevId: 163514331
Diffstat (limited to 'tensorflow/c/c_api.h')
-rw-r--r--tensorflow/c/c_api.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/tensorflow/c/c_api.h b/tensorflow/c/c_api.h
index 715fe57656..df38ae5399 100644
--- a/tensorflow/c/c_api.h
+++ b/tensorflow/c/c_api.h
@@ -363,9 +363,9 @@ typedef struct TF_Output {
// Sets the shape of the Tensor referenced by `output` in `graph` to
// the shape described by `dims` and `num_dims`.
//
-// If the number of dimensions is unknown, `num_dims` must be
-// set to -1 and dims can be null. If a dimension is unknown,
-// the corresponding entry in the `dims` array must be -1.
+// If the number of dimensions is unknown, `num_dims` must be set to
+// -1 and `dims` can be null. If a dimension is unknown, the
+// corresponding entry in the `dims` array must be -1.
//
// This does not overwrite the existing shape associated with `output`,
// but merges the input shape with the existing shape. For example,