aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/kernels/parallel_map_dataset_op.cc
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/core/kernels/parallel_map_dataset_op.cc')
-rw-r--r--tensorflow/core/kernels/parallel_map_dataset_op.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/tensorflow/core/kernels/parallel_map_dataset_op.cc b/tensorflow/core/kernels/parallel_map_dataset_op.cc
index 6b1214e660..93ed644d72 100644
--- a/tensorflow/core/kernels/parallel_map_dataset_op.cc
+++ b/tensorflow/core/kernels/parallel_map_dataset_op.cc
@@ -26,7 +26,7 @@ namespace tensorflow {
namespace {
-// See documentation in ../ops/iterator_ops.cc for a high-level
+// See documentation in ../ops/dataset_ops.cc for a high-level
// description of the following op.
class ParallelMapDatasetOp : public OpKernel {
@@ -188,7 +188,7 @@ class ParallelMapDatasetOp : public OpKernel {
if (!output_buffer_.empty() && output_buffer_.front().is_produced) {
// A new output element is available. Forward the status
- // from computing it, and (if we sucessfully got an
+ // from computing it, and (if we successfully got an
// element) the output values.
Status s = output_buffer_.front().output_status;
if (s.ok()) {