aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar ManHyuk <manhyuk@kw.ac.kr>2018-01-31 05:20:47 +0900
committerGravatar Andrew Harp <andrewharp@users.noreply.github.com>2018-01-30 15:20:47 -0500
commita58f26d7265428ef026877cb24cc6bbd7693687b (patch)
tree2b3f6340e9e1c9ea8d0223edbe430d71bbca7ef3
parent84858dbcf0f0b37dc4687ceaa51c4c641d65d93a (diff)
Fix typo (#16583)
* fix typos * fix typos * fix typo * fix typo * fix typo * fix typo * fix typo * tweak grammar
-rw-r--r--tensorflow/contrib/coder/kernels/range_coder.cc2
-rw-r--r--tensorflow/contrib/reduce_slice_ops/ops/reduce_slice_ops.cc6
-rw-r--r--tensorflow/core/platform/s3/s3_file_system.h2
3 files changed, 5 insertions, 5 deletions
diff --git a/tensorflow/contrib/coder/kernels/range_coder.cc b/tensorflow/contrib/coder/kernels/range_coder.cc
index f4f076b6c4..21b35155ff 100644
--- a/tensorflow/contrib/coder/kernels/range_coder.cc
+++ b/tensorflow/contrib/coder/kernels/range_coder.cc
@@ -276,7 +276,7 @@ void RangeEncoder::Finalize(string* sink) {
}
} else if (base_ != 0) {
// If base == 0, then pick 0 from [base, base + size) and no zeros are
- // explcitly written.
+ // explicitly written.
//
// Otherwise, pick (base + (2^16 - base[16:0])), i.e., round up base to the
// next multiple of 2^16. As 2^16 < size, this value should be in the
diff --git a/tensorflow/contrib/reduce_slice_ops/ops/reduce_slice_ops.cc b/tensorflow/contrib/reduce_slice_ops/ops/reduce_slice_ops.cc
index 31e565027f..92879ab535 100644
--- a/tensorflow/contrib/reduce_slice_ops/ops/reduce_slice_ops.cc
+++ b/tensorflow/contrib/reduce_slice_ops/ops/reduce_slice_ops.cc
@@ -246,9 +246,9 @@ and 'indices' is [[0,1]
[1,1]
[0,2]],
-the the output will be [[ 1, 20, 3]
- [ +BIG_VALUE, +BIG_VALUE, +BIG_VALUE]
- [ 1, 5, 3]].
+the output will be [[ 1, 20, 3]
+ [ +BIG_VALUE, +BIG_VALUE, +BIG_VALUE]
+ [ 1, 5, 3]].
```
The data must be at least rank 1. The indices can be of shape (?,2) where the
diff --git a/tensorflow/core/platform/s3/s3_file_system.h b/tensorflow/core/platform/s3/s3_file_system.h
index d0d6bb5949..8177e48dba 100644
--- a/tensorflow/core/platform/s3/s3_file_system.h
+++ b/tensorflow/core/platform/s3/s3_file_system.h
@@ -63,7 +63,7 @@ class S3FileSystem : public FileSystem {
// variables.
// By default S3 access regional endpoint, with region
// controlled by `AWS_REGION`. The endpoint could be overridden
- // with explicity `S3_ENDPOINT`. S3 use HTTPS by default.
+ // explicitly with `S3_ENDPOINT`. S3 uses HTTPS by default.
// If S3_USE_HTTPS=0 is specified, HTTP is used. Also,
// S3_VERIFY_SSL=0 could disable SSL verification in case
// HTTPS is used.