From 6f442671e5ea9f95377ea678fae340780487ad32 Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Mon, 2 May 2022 18:26:33 +0200 Subject: [PATCH] client: fix typo in docs --- client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client.go b/client.go index 57bd87e..af01d5f 100644 --- a/client.go +++ b/client.go @@ -118,7 +118,7 @@ func NewClient(conn net.Conn, host string) (*Client, error) { } // NewClientLMTP returns a new LMTP Client (as defined in RFC 2033) using an -// existing connector and host as a server name to be used when authenticating. +// existing connection and host as a server name to be used when authenticating. func NewClientLMTP(conn net.Conn, host string) (*Client, error) { c, err := NewClient(conn, host) if err != nil {