aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/lib/gtl/optional.h
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/core/lib/gtl/optional.h')
-rw-r--r--tensorflow/core/lib/gtl/optional.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/core/lib/gtl/optional.h b/tensorflow/core/lib/gtl/optional.h
index 2ff8b9c7d1..8ba4b09143 100644
--- a/tensorflow/core/lib/gtl/optional.h
+++ b/tensorflow/core/lib/gtl/optional.h
@@ -656,7 +656,7 @@ class optional : private internal_optional::optional_data<T>,
constexpr const T& reference() const { return *this->pointer(); }
T& reference() { return *(this->pointer()); }
- // T constraint checks. You can't have an optional of nullopt_t, in_place_t or
+ // T constaint checks. You can't have an optional of nullopt_t, in_place_t or
// a reference.
static_assert(
!std::is_same<nullopt_t, typename std::remove_cv<T>::type>::value,