Skip to content

Commit 9d12f1a

Browse files
committed
Fix docs
1 parent b11dcbe commit 9d12f1a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/GRPCCore/Call/Client/ClientResponse.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ extension StreamingClientResponse {
363363

364364
/// Returns the messages received from the server.
365365
///
366-
/// For rejected RPCs (in other words, where ``accepted`` is `failure`), the `RPCAsyncSequence` throws a `RPCError``.
366+
/// For rejected RPCs (in other words, where ``accepted`` is `failure`), the `RPCAsyncSequence` throws a ``RPCError``.
367367
public var messages: RPCAsyncSequence<Message, any Error> {
368368
switch self.accepted {
369369
case let .success(contents):
@@ -385,7 +385,7 @@ extension StreamingClientResponse {
385385

386386
/// Returns the body parts (i.e. `messages` and `trailingMetadata`) returned from the server.
387387
///
388-
/// For rejected RPCs (in other words, where ``accepted`` is `failure`), the `RPCAsyncSequence` throws a `RPCError``.
388+
/// For rejected RPCs (in other words, where ``accepted`` is `failure`), the `RPCAsyncSequence` throws a ``RPCError``.
389389
public var bodyParts: RPCAsyncSequence<Contents.BodyPart, any Error> {
390390
switch self.accepted {
391391
case let .success(contents):

0 commit comments

Comments
 (0)