aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/user_ops
diff options
context:
space:
mode:
authorGravatar Anna R <annarev@google.com>2018-01-03 11:00:21 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-01-03 11:04:25 -0800
commit613a160b55bf23d886e20f7512a79d57b9d2f83f (patch)
tree16d579355fffc85cecc9ee0e257c6aea30c0e69f /tensorflow/core/user_ops
parent0f2fa9daa6b36e7dcad0b739ef4d08944e69ecce (diff)
Automated g4 rollback of changelist 180670333
PiperOrigin-RevId: 180691955
Diffstat (limited to 'tensorflow/core/user_ops')
-rw-r--r--tensorflow/core/user_ops/fact.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/tensorflow/core/user_ops/fact.cc b/tensorflow/core/user_ops/fact.cc
index 3a4fc8115a..800008e0b8 100644
--- a/tensorflow/core/user_ops/fact.cc
+++ b/tensorflow/core/user_ops/fact.cc
@@ -18,7 +18,11 @@ limitations under the License.
#include "tensorflow/core/framework/op.h"
#include "tensorflow/core/framework/op_kernel.h"
-REGISTER_OP("Fact").Output("fact: string");
+REGISTER_OP("Fact")
+ .Output("fact: string")
+ .Doc(R"doc(
+Output a fact about factorials.
+)doc");
class FactOp : public tensorflow::OpKernel {
public: