aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/ops/control_flow_ops.cc
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2017-05-09 14:35:36 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-05-10 16:59:22 -0700
commit049f9e6a354a1ccc6f1e97064593dede50f07867 (patch)
treef400e4c3fe9972402ea3338da508628d4b4a5af1 /tensorflow/core/ops/control_flow_ops.cc
parenta33e339dd676f370307e67e477141bbacf05cc18 (diff)
Fix formatting of some op descriptions. In most cases, this means
separating out a 1-line summary from the main description. PiperOrigin-RevId: 155553359
Diffstat (limited to 'tensorflow/core/ops/control_flow_ops.cc')
-rw-r--r--tensorflow/core/ops/control_flow_ops.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/tensorflow/core/ops/control_flow_ops.cc b/tensorflow/core/ops/control_flow_ops.cc
index 57224c365d..95f3f0da9d 100644
--- a/tensorflow/core/ops/control_flow_ops.cc
+++ b/tensorflow/core/ops/control_flow_ops.cc
@@ -331,7 +331,10 @@ REGISTER_OP("Abort")
.Attr("exit_without_error: bool = false")
.SetShapeFn(shape_inference::NoOutputs)
.Doc(R"doc(
-Raise a exception to abort the process when called. If exit_without_error is true, the process will exit normally, otherwise it will exit with a SIGABORT signal.
+Raise a exception to abort the process when called.
+
+If exit_without_error is true, the process will exit normally,
+otherwise it will exit with a SIGABORT signal.
Returns nothing but an exception.