From 0b6eff0eebabc25227799879a3778613dd00fbb8 Mon Sep 17 00:00:00 2001 From: Bernhard Froehlich Date: Wed, 4 Jun 2025 17:59:02 +0000 Subject: [PATCH] smtp: add missing periods in comments Merge from net/smtp/smtp.go Obtained from: b2faff18ce28edad98303d2c3134dec1331fd7b5 --- smtp.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/smtp.go b/smtp.go index d8bca14..95e60e0 100644 --- a/smtp.go +++ b/smtp.go @@ -455,7 +455,7 @@ func (c *Client) Quit() error { return c.Text.Close() } -// validateLine checks to see if a line has CR or LF as per RFC 5321 +// validateLine checks to see if a line has CR or LF as per RFC 5321. func validateLine(line string) error { if strings.ContainsAny(line, "\n\r") { return errors.New("smtp: A line must not contain CR or LF")