Skip to content

Commit

Permalink
Fix typo in Dataset.zip documentation
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 158570433
  • Loading branch information
saeta authored and tensorflower-gardener committed Jun 9, 2017
1 parent c9275fe commit 7f7826b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tensorflow/contrib/data/python/ops/dataset_ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -537,9 +537,9 @@ def zip(datasets):
# The `datasets` argument may contain an arbitrary number of
# datasets.
Dataset.zip((a, b, c) == { (1, 4, (7, 8)),
(2, 5, (9, 10)),
(3, 6, (11, 12)) }
Dataset.zip((a, b, c)) == { (1, 4, (7, 8)),
(2, 5, (9, 10)),
(3, 6, (11, 12)) }
# The number of elements in the resulting dataset is the same as
# the size of the smallest dataset in `datasets`.
Expand Down

0 comments on commit 7f7826b

Please sign in to comment.