Index: third_party/mojo/src/mojo/public/cpp/bindings/lib/map_internal.h |
diff --git a/third_party/mojo/src/mojo/public/cpp/bindings/lib/map_internal.h b/third_party/mojo/src/mojo/public/cpp/bindings/lib/map_internal.h |
index 8afc18c160a1e6a510694c828f768e5048ef574d..84f927c9918144fcd2c8bbca02874d94ab31b026 100644 |
--- a/third_party/mojo/src/mojo/public/cpp/bindings/lib/map_internal.h |
+++ b/third_party/mojo/src/mojo/public/cpp/bindings/lib/map_internal.h |
@@ -21,7 +21,7 @@ template <typename Key, typename Value> |
struct MapTraits<Key, Value, false> { |
// Map keys can't be move only types. |
static_assert(!internal::IsMoveOnlyType<Key>::value, |
- "Map keys can not be move only types."); |
+ "Map keys cannot be move only types."); |
typedef Key KeyStorageType; |
typedef Key& KeyRefType; |
@@ -111,7 +111,7 @@ template <typename Key, typename Value> |
struct MapTraits<Key, Value, true> { |
// Map keys can't be move only types. |
static_assert(!internal::IsMoveOnlyType<Key>::value, |
- "Map keys can not be move only types."); |
+ "Map keys cannot be move only types."); |
typedef Key KeyStorageType; |
typedef Key& KeyRefType; |