From f8a43f9d63ce90f10852d69e40fbb9fe849fc190 Mon Sep 17 00:00:00 2001 From: "A. Unique TensorFlower" Date: Wed, 6 Sep 2017 17:18:33 -0700 Subject: [PATCH] Fix typo in graph transforms error message PiperOrigin-RevId: 167796563 --- tensorflow/tools/graph_transforms/remove_attribute.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tensorflow/tools/graph_transforms/remove_attribute.cc b/tensorflow/tools/graph_transforms/remove_attribute.cc index d76c3ff87d0c0f..b1a04c0f283bf6 100644 --- a/tensorflow/tools/graph_transforms/remove_attribute.cc +++ b/tensorflow/tools/graph_transforms/remove_attribute.cc @@ -34,7 +34,7 @@ Status RemoveAttribute(const GraphDef& input_graph_def, if (!context.params.count("attribute_name") || (context.params.at("attribute_name").size() != 1)) { return errors::InvalidArgument( - "remove_nodes expects exactly one 'attribute_name' " + "remove_attribute expects exactly one 'attribute_name' " "argument, e.g. remove_attribute(op_name=Mul, attribute_name=foo)"); }