From 3a7ce47d43113d1a80cacd0ae70630b3727eda3e Mon Sep 17 00:00:00 2001 From: QingfengLee Date: Mon, 7 Aug 2023 16:57:13 +0800 Subject: [PATCH] Update MANUAL.md (#575) ServerStreamingCall provides the "responses", not "response" --- MANUAL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MANUAL.md b/MANUAL.md index dd9aa11e..edbbe55c 100644 --- a/MANUAL.md +++ b/MANUAL.md @@ -1709,7 +1709,7 @@ The `ServerStreamingCall` provides the following additional properties: - request: `Readonly` The request message being sent. -- response: `RpcOutputStream` +- responses: `RpcOutputStream` Response messages from the server. This is an AsyncIterable that can be iterated with `await for .. of`.