From d44d015c44ed965c7fad4779d1ec97a69bd4e758 Mon Sep 17 00:00:00 2001 From: David Hoover Date: Wed, 20 Feb 2019 16:40:57 -0800 Subject: [PATCH] doc: Fix typo --- netty/src/main/java/io/grpc/netty/ProtocolNegotiators.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netty/src/main/java/io/grpc/netty/ProtocolNegotiators.java b/netty/src/main/java/io/grpc/netty/ProtocolNegotiators.java index 2d47eb6e2c..8fad41e836 100644 --- a/netty/src/main/java/io/grpc/netty/ProtocolNegotiators.java +++ b/netty/src/main/java/io/grpc/netty/ProtocolNegotiators.java @@ -296,7 +296,7 @@ final class ProtocolNegotiators { } else { /* * Implementation note: We pick -1 as the port here rather than deriving it from the - * original socket address. The SSL engine doens't use this port number when contacting the + * original socket address. The SSL engine doesn't use this port number when contacting the * remote server, but rather it is used for other things like SSL Session caching. When an * invalid authority is provided (like "bad_cert"), picking the original port and passing it * in would mean that the port might used under the assumption that it was correct. By