From 17105f4c69a86fff1c7a2465629976f107c36af6 Mon Sep 17 00:00:00 2001 From: Dennis Hezel Date: Thu, 27 Feb 2025 19:27:15 +0100 Subject: [PATCH] doc: Adjust wording in client streaming read() --- src/agrpc/server_rpc.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/agrpc/server_rpc.hpp b/src/agrpc/server_rpc.hpp index 768f9704..829dd1a8 100644 --- a/src/agrpc/server_rpc.hpp +++ b/src/agrpc/server_rpc.hpp @@ -324,8 +324,8 @@ class ServerRPC /** * @brief Receive a message from the client * - * May not be called currently with `finish()`/`finish_with_error()`. It is not meaningful to call it concurrently - * with another read on the same rpc since reads on the same stream are delivered in order. + * It is not meaningful to call it concurrently with another read on the same rpc since reads on the same stream are + * delivered in order. * * @param token A completion token like `asio::yield_context` or `agrpc::use_sender`. The * completion signature is `void(bool)`. `true` indicates that a valid message was read. `false` when