Browse Source

Fixup various doc issues (#2015)

George Barnett 1 year ago
parent
commit
590c3325f1
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Sources/GRPCProtobuf/Coding.swift

+ 2 - 2
Sources/GRPCProtobuf/Coding.swift

@@ -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.