From ea90352ef47a6c4bc9172efdb5d2fb1db9712b6d Mon Sep 17 00:00:00 2001 From: Winni Neessen Date: Fri, 4 Oct 2024 19:45:37 +0200 Subject: [PATCH] Refactor SMTPAuthType comment for clarity Updated the comment for SMTPAuthType to more clearly explain its purpose as a type wrapper for SMTP authentication mechanisms. This improves code readability and helps future developers understand the type's function. --- auth.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/auth.go b/auth.go index aae1060..4eadd11 100644 --- a/auth.go +++ b/auth.go @@ -6,7 +6,8 @@ package mail import "errors" -// SMTPAuthType represents a string to any SMTP AUTH type +// SMTPAuthType is a type wrapper for a string type. It represents the type of SMTP authentication +// mechanism to be used. type SMTPAuthType string const (