From 0f214edc495404c8148e3cb82564835c920fafa6 Mon Sep 17 00:00:00 2001 From: Cao Weiwei Date: Tue, 6 Sep 2016 23:21:41 +0800 Subject: [PATCH] Remove redundant word Signed-off-by: Cao Weiwei Upstream-commit: c6edecc2d67b8e4659873fe9a960d76f7b2f82f4 Component: engine --- .../src/github.com/docker/go-connections/sockets/tcp_socket.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/engine/vendor/src/github.com/docker/go-connections/sockets/tcp_socket.go b/components/engine/vendor/src/github.com/docker/go-connections/sockets/tcp_socket.go index 8a82727df0..53cbb6c79e 100644 --- a/components/engine/vendor/src/github.com/docker/go-connections/sockets/tcp_socket.go +++ b/components/engine/vendor/src/github.com/docker/go-connections/sockets/tcp_socket.go @@ -7,7 +7,7 @@ import ( ) // NewTCPSocket creates a TCP socket listener with the specified address and -// and the specified tls configuration. If TLSConfig is set, will encapsulate the +// the specified tls configuration. If TLSConfig is set, will encapsulate the // TCP listener inside a TLS one. func NewTCPSocket(addr string, tlsConfig *tls.Config) (net.Listener, error) { l, err := net.Listen("tcp", addr)