aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python
diff options
context:
space:
mode:
authorGravatar Ruoxin Sang <rxsang@google.com>2018-10-08 15:24:56 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-10-08 15:29:18 -0700
commit0b13d0806b061deaec0e96cfdca1ae4509174f89 (patch)
tree2d1a21aa9e07e6ae7cd547ebfa0dd774f020e1ab /tensorflow/python
parentb055d78b0edbf117ec5f7f2662d3bb2781ae02b3 (diff)
Simple comment fix in CheckpointInputPipelineHook.
PiperOrigin-RevId: 216260216
Diffstat (limited to 'tensorflow/python')
-rw-r--r--tensorflow/python/data/experimental/ops/iterator_ops.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/python/data/experimental/ops/iterator_ops.py b/tensorflow/python/data/experimental/ops/iterator_ops.py
index 72d7d58f06..5eb2563977 100644
--- a/tensorflow/python/data/experimental/ops/iterator_ops.py
+++ b/tensorflow/python/data/experimental/ops/iterator_ops.py
@@ -198,7 +198,7 @@ class CheckpointInputPipelineHook(session_run_hook.SessionRunHook):
# is run *after* this hook. That is troublesome because
# 1. If a checkpoint exists and this hook restores it, the initializer hook
# will override it.
- # 2. If no checkpoint exists, this hook will try to save an initialized
+ # 2. If no checkpoint exists, this hook will try to save an uninitialized
# iterator which will result in an exception.
#
# As a temporary fix we enter the following implicit contract between this