Skip to content

Commit

Permalink
Reword documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
armstrongnate committed Jun 13, 2018
1 parent df96858 commit c317f9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/SwiftGRPC/Core/Server.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit c317f9d

Please sign in to comment.