From df15500f6b982a37348a022fc4d07e451535f14a Mon Sep 17 00:00:00 2001 From: Douglas Ayers Date: Thu, 29 Feb 2024 07:20:31 -0500 Subject: [PATCH] Fixed typo. --- src/dds_simple.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dds_simple.h b/src/dds_simple.h index a080a14..fc3d917 100644 --- a/src/dds_simple.h +++ b/src/dds_simple.h @@ -426,7 +426,7 @@ class DDSSimpleManager : public DDSManager decltype(m_sharedLock) lck(mutex_shr); auto iter = m_subMap.find(topic_name); if (iter == m_subMap.end()) { - return std::string("Invalid Subscirber for ") + topic_name; + return std::string("Invalid Subscriber for ") + topic_name; } temp = iter->second; }