aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/lib/gtl/array_slice.h
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/core/lib/gtl/array_slice.h')
-rw-r--r--tensorflow/core/lib/gtl/array_slice.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/core/lib/gtl/array_slice.h b/tensorflow/core/lib/gtl/array_slice.h
index 30ef19ebe8..002d166c72 100644
--- a/tensorflow/core/lib/gtl/array_slice.h
+++ b/tensorflow/core/lib/gtl/array_slice.h
@@ -191,7 +191,7 @@ class ArraySlice {
void pop_front() { remove_prefix(1); }
// These relational operators have the same semantics as the
- // std::vector<T> relational operators: they do deep (elementwise)
+ // std::vector<T> relational operators: they do deep (element-wise)
// comparisons. Array slices are equal iff their size is the same
// and all their elements are equal.
bool operator==(ArraySlice<T> other) const { return impl_ == other.impl_; }