Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Sources/GRPCCore/Call/Client/ClientRequest.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
/// See ``StreamingClientRequest`` for streaming requests and ``ServerRequest`` for the
/// servers representation of a single-message request.
///
/// ## Creating ``Single`` requests
/// ## Creating requests
///
/// ```swift
/// let request = ClientRequest<String>(message: "Hello, gRPC!")
Expand Down
4 changes: 2 additions & 2 deletions Sources/GRPCCore/Call/Client/ClientResponse.swift
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
/// an ``RPCError`` describing why the RPC failed, including an error code, error message and any
/// metadata sent by the server.
///
/// ### Using ``Single`` responses
/// ### Using responses
///
/// Each response has a ``accepted`` property which contains all RPC information. You can create
/// one by calling ``init(accepted:)`` or one of the two convenience initializers:
Expand Down Expand Up @@ -153,7 +153,7 @@ public struct ClientResponse<Message: Sendable>: Sendable {
/// to execute the request. The failure case contains an ``RPCError`` describing why the RPC
/// failed, including an error code, error message and any metadata sent by the server.
///
/// ### Using ``Stream`` responses
/// ### Using streaming responses
///
/// Each response has a ``accepted`` property which contains RPC information. You can create
/// one by calling ``init(accepted:)`` or one of the two convenience initializers:
Expand Down
4 changes: 2 additions & 2 deletions Sources/GRPCCore/Call/Server/ServerResponse.swift
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
/// of the RPC failed. The failure case contains an ``RPCError`` describing why the RPC failed,
/// including an error code, error message and any metadata sent by the server.
///
/// ### Using ``Single`` responses
/// ### Using responses
///
/// Each response has an ``accepted`` property which contains all RPC information. You can create
/// one by calling ``init(accepted:)`` or one of the two convenience initializers:
Expand Down Expand Up @@ -144,7 +144,7 @@ public struct ServerResponse<Message: Sendable>: Sendable {
/// contains an ``RPCError`` describing why the RPC failed, including an error code, error
/// message and any metadata to send to the client.
///
/// ### Using ``Stream`` responses
/// ### Using streaming responses
///
/// Each response has an ``accepted`` property which contains all RPC information. You can create
/// one by calling ``init(accepted:)`` or one of the two convenience initializers:
Expand Down
Loading
Loading