aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/stream_executor/lib/statusor.h
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/stream_executor/lib/statusor.h')
-rw-r--r--tensorflow/stream_executor/lib/statusor.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/stream_executor/lib/statusor.h b/tensorflow/stream_executor/lib/statusor.h
index 06278d5152..bb423e390a 100644
--- a/tensorflow/stream_executor/lib/statusor.h
+++ b/tensorflow/stream_executor/lib/statusor.h
@@ -135,7 +135,7 @@ class StatusOr {
// operators, to support move-only types and avoid unnecessary copying.
StatusOr(T&& value); // NOLINT
- // Move conversion operator to avoid unecessary copy.
+ // Move conversion operator to avoid unnecessary copy.
// T must be assignable from U.
// Not marked with explicit so the implicit conversion can happen.
template <typename U>