aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/g3doc
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2017-01-06 15:31:52 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-01-06 15:45:55 -0800
commit8568f49720a7b3bf4e0ef963c27143b584fb7145 (patch)
treed457ce87030be0eb51e71b799a87aabd8a6135d4 /tensorflow/g3doc
parent699d1e8f50e5d27d9a791a44f0384fcfaf51e3af (diff)
Removes probably old text.
Change: 143823551
Diffstat (limited to 'tensorflow/g3doc')
-rw-r--r--tensorflow/g3doc/how_tos/tool_developers/index.md7
1 files changed, 3 insertions, 4 deletions
diff --git a/tensorflow/g3doc/how_tos/tool_developers/index.md b/tensorflow/g3doc/how_tos/tool_developers/index.md
index bcbd21b68c..e29c2543e5 100644
--- a/tensorflow/g3doc/how_tos/tool_developers/index.md
+++ b/tensorflow/g3doc/how_tos/tool_developers/index.md
@@ -98,9 +98,8 @@ Every node should have a unique identifier that's not used by any other nodes
in the graph. If you don't specify one as you're building a graph using the
Python API, one reflecting the name of operation, such as "MatMul",
concatenated with a monotonically increasing number, such as "5", will be
-picked for you. an arbitrary one will be picked for you. The name is used when
-defining the connections between nodes, and when setting inputs and outputs for
-the whole graph when it's run.
+picked for you. The name is used when defining the connections between nodes,
+and when setting inputs and outputs for the whole graph when it's run.
### `op`
@@ -118,7 +117,7 @@ inputs might have a list like `["some_node_name", "another_node_name"]`, which
is equivalent to `["some_node_name:0", "another_node_name:0"]`, and defines the
node's first input as the first output from the node with the name
`"some_node_name"`, and a second input from the first output of
-`"another_node_name
+`"another_node_name"`
### `device`