From 39194021401320e271da7e111f9177e3da7bac96 Mon Sep 17 00:00:00 2001 From: Jonathan Hanks <jonathan.hanks@ligo.org> Date: Thu, 5 Nov 2020 09:55:22 -0800 Subject: [PATCH] Spelling correction on an error message for cps_recv. --- src/pub_sub_stream/message_queue.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pub_sub_stream/message_queue.hh b/src/pub_sub_stream/message_queue.hh index 0b46955bf..7b88bcecf 100644 --- a/src/pub_sub_stream/message_queue.hh +++ b/src/pub_sub_stream/message_queue.hh @@ -63,7 +63,7 @@ public: static_assert( MaxSize > 0, "the MaxSize parameter must be > 0" ); static_assert( std::is_nothrow_move_constructible< T >::value == true, - "Tye type must be no through move constructable" ); + "The type must be no through move constructable" ); static_assert( std::is_nothrow_move_assignable< T >::value == true, "The type must be no throw move assignable" ); -- GitLab