aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/user_ops
diff options
context:
space:
mode:
authorGravatar Anna R <annarev@google.com>2018-01-03 07:54:54 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-01-03 07:58:09 -0800
commitca19540ebdb827c9ac9a237bde97065e787dbe4f (patch)
treeb54019c962d8ee95fefe6165d58a01dcc4cb2de5 /tensorflow/core/user_ops
parent961be409bbb0d3febf8a1005e67cb6750b75806d (diff)
Removing doc strings from REGISTER_OP calls in core/ops.
PiperOrigin-RevId: 180670333
Diffstat (limited to 'tensorflow/core/user_ops')
-rw-r--r--tensorflow/core/user_ops/fact.cc6
1 files changed, 1 insertions, 5 deletions
diff --git a/tensorflow/core/user_ops/fact.cc b/tensorflow/core/user_ops/fact.cc
index 800008e0b8..3a4fc8115a 100644
--- a/tensorflow/core/user_ops/fact.cc
+++ b/tensorflow/core/user_ops/fact.cc
@@ -18,11 +18,7 @@ limitations under the License.
#include "tensorflow/core/framework/op.h"
#include "tensorflow/core/framework/op_kernel.h"
-REGISTER_OP("Fact")
- .Output("fact: string")
- .Doc(R"doc(
-Output a fact about factorials.
-)doc");
+REGISTER_OP("Fact").Output("fact: string");
class FactOp : public tensorflow::OpKernel {
public: