From c317f9d0ee1e9aaf0489b0eedb162f4c9f1849f8 Mon Sep 17 00:00:00 2001 From: Nate Armstrong Date: Wed, 13 Jun 2018 06:45:40 -0600 Subject: [PATCH] Reword documentation --- Sources/SwiftGRPC/Core/Server.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/SwiftGRPC/Core/Server.swift b/Sources/SwiftGRPC/Core/Server.swift index 29c9424d6..b8138ff84 100644 --- a/Sources/SwiftGRPC/Core/Server.swift +++ b/Sources/SwiftGRPC/Core/Server.swift @@ -50,7 +50,7 @@ public class Server { /// - Parameter address: the address where the server will listen /// - Parameter key: the private key for the server's certificates /// - Parameter certs: the server's certificates - /// - Parameter rootCerts: for client validation and will enforce client validation when provided + /// - Parameter rootCerts: used to validate client certificates; will enable enforcing valid client certificates when provided public init(address: String, key: String, certs: String, rootCerts: String? = nil) { underlyingServer = cgrpc_server_create_secure(address, key, certs, rootCerts, rootCerts == nil ? 0 : 1) completionQueue = CompletionQueue(