|
|
@@ -21,7 +21,7 @@ public import SwiftProtobuf
|
|
|
public struct ProtobufSerializer<Message: SwiftProtobuf.Message>: GRPCCore.MessageSerializer {
|
|
|
public init() {}
|
|
|
|
|
|
- /// Serializes a ``Message`` into a sequence of bytes.
|
|
|
+ /// Serializes a `Message` into a sequence of bytes.
|
|
|
///
|
|
|
/// - Parameter message: The message to serialize.
|
|
|
/// - Returns: An array of serialized bytes representing the message.
|
|
|
@@ -42,7 +42,7 @@ public struct ProtobufSerializer<Message: SwiftProtobuf.Message>: GRPCCore.Messa
|
|
|
public struct ProtobufDeserializer<Message: SwiftProtobuf.Message>: GRPCCore.MessageDeserializer {
|
|
|
public init() {}
|
|
|
|
|
|
- /// Deserializes a sequence of bytes into a ``Message``.
|
|
|
+ /// Deserializes a sequence of bytes into a `Message`.
|
|
|
///
|
|
|
/// - Parameter serializedMessageBytes: The array of bytes to deserialize.
|
|
|
/// - Returns: The deserialized message.
|