diff --git a/cpp/mrc/src/internal/control_plane/server.cpp b/cpp/mrc/src/internal/control_plane/server.cpp index 2b37e4723..97e2c6c5c 100644 --- a/cpp/mrc/src/internal/control_plane/server.cpp +++ b/cpp/mrc/src/internal/control_plane/server.cpp @@ -204,7 +204,7 @@ void Server::do_service_await_join() /** * @brief Stream Acceptor * - * The while loop of this method says active as long as the grpc server is still accepting connections. + * The while loop of this method stays active as long as the grpc server is still accepting connections. * There are multiple way this can be implemented depending the service requirements, one might choose * to preallocate N number of streams and issues them all to the CQ. This is an alternative method which * creates a single stream and waits for it to get initialized, then creates another. The current implementation is diff --git a/cpp/mrc/src/internal/control_plane/server/subscription_manager.hpp b/cpp/mrc/src/internal/control_plane/server/subscription_manager.hpp index 3c374242d..dcb57ef8b 100644 --- a/cpp/mrc/src/internal/control_plane/server/subscription_manager.hpp +++ b/cpp/mrc/src/internal/control_plane/server/subscription_manager.hpp @@ -41,7 +41,7 @@ class Role; class ClientInstance; /** - * @brief A specialize TaggedManager to synchronize tag and instance_id information across between a collection of + * @brief A specialized TaggedIssuer to synchronize tag and instance_id information across between a collection of * client-side objects with common linkages, e.g. the Publisher/Subscriber services which form the building blocks for * Ingress/EgressPorts use instances of SubscriptionService for Publishers to get control plane updates to the list of * Subscribers. diff --git a/cpp/mrc/src/internal/control_plane/server/tagged_issuer.hpp b/cpp/mrc/src/internal/control_plane/server/tagged_issuer.hpp index 96751d77b..f85958520 100644 --- a/cpp/mrc/src/internal/control_plane/server/tagged_issuer.hpp +++ b/cpp/mrc/src/internal/control_plane/server/tagged_issuer.hpp @@ -70,9 +70,9 @@ class Tagged * This is the primary base class for a control plane server-side stateful service which can be updated by the client * and state updates driven independently via the issue_update() method. * - * TaggedManager is not thread-safe or protected in anyway. The global state mutex should protect all TaggedManagers. + * TaggedIssuer is not thread-safe or protected in anyway. The global state mutex should protect all TaggedIssuers. * - * In most scenarios, the service side will have a batched updated which will periodically visit each TaggedManager and + * In most scenarios, the service side will have a batched updated which will periodically visit each TaggedIssuer and * call issue_update(); however, depending on the service request/update message, the call may also require an immediate * update. */