From 8e8c67c3375da3fe8b44e7c11eb1d3fbb2eaa41c Mon Sep 17 00:00:00 2001 From: "A. Unique TensorFlower" Date: Thu, 14 May 2020 08:44:49 -0700 Subject: [PATCH] Comment typo fix. PiperOrigin-RevId: 311539306 Change-Id: Ieb8cf58b706e822177269b00a1a0ba58f0a97067 --- tensorflow/python/ops/tensor_array_ops.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tensorflow/python/ops/tensor_array_ops.py b/tensorflow/python/ops/tensor_array_ops.py index e8ea9ff4e4d..d386d14b64a 100644 --- a/tensorflow/python/ops/tensor_array_ops.py +++ b/tensorflow/python/ops/tensor_array_ops.py @@ -1122,7 +1122,7 @@ class TensorArray(object): Returns: A new TensorArray object with flow that ensures the control dependencies from the contexts will become control dependencies for writes, reads, etc. - Use this object all for subsequent operations. + Use this object for all subsequent operations. """ return self._implementation.identity() @@ -1152,7 +1152,7 @@ class TensorArray(object): Returns: A new TensorArray object with flow that ensures the write occurs. - Use this object all for subsequent operations. + Use this object for all subsequent operations. Raises: ValueError: if there are more writers than specified. @@ -1217,7 +1217,7 @@ class TensorArray(object): Returns: A new TensorArray object with flow that ensures the unstack occurs. - Use this object all for subsequent operations. + Use this object for all subsequent operations. Raises: ValueError: if the shape inference fails. @@ -1236,7 +1236,7 @@ class TensorArray(object): Returns: A new TensorArray object with flow that ensures the scatter occurs. - Use this object all for subsequent operations. + Use this object for all subsequent operations. Raises: ValueError: if the shape inference fails. @@ -1255,7 +1255,7 @@ class TensorArray(object): Returns: A new TensorArray object with flow that ensures the split occurs. - Use this object all for subsequent operations. + Use this object for all subsequent operations. Raises: ValueError: if the shape inference fails.