diff --git a/Sources/GRPCCodeGen/Internal/Translator/ServerCodeTranslator.swift b/Sources/GRPCCodeGen/Internal/Translator/ServerCodeTranslator.swift index 889a4b08b..fd9deb23c 100644 --- a/Sources/GRPCCodeGen/Internal/Translator/ServerCodeTranslator.swift +++ b/Sources/GRPCCodeGen/Internal/Translator/ServerCodeTranslator.swift @@ -27,8 +27,6 @@ /// request: ServerRequest.Stream /// ) async throws -> ServerResponse.Stream /// } -/// -/// /// // Generated conformance to `RegistrableRPCService`. /// extension foo.Bar.StreamingServiceProtocol { /// public func registerRPCs(with router: inout RPCRouter) { @@ -39,14 +37,11 @@ /// handler: { request in try await self.baz(request) } /// ) /// } -/// /// public protocol foo_BarServiceProtocol: foo.Bar.StreamingServiceProtocol { /// func baz( /// request: ServerRequest.Single /// ) async throws -> ServerResponse.Single /// } -/// -/// /// // Generated partial conformance to `foo_BarStreamingServiceProtocol`. /// extension foo.Bar.ServiceProtocol { /// public func baz(