From 6625f87773f6a2355afdab6afd3fe9cbeb7f874a Mon Sep 17 00:00:00 2001 From: aler9 <46489434+aler9@users.noreply.github.com> Date: Sun, 13 Sep 2020 16:41:36 +0200 Subject: [PATCH] update docs --- auth.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auth.go b/auth.go index 8cfc6f6d..fbaadca5 100644 --- a/auth.go +++ b/auth.go @@ -38,7 +38,7 @@ type AuthServer struct { } // NewAuthServer allocates an AuthServer. -// If methods is nil, Basic and Digest authentications are used. +// If methods is nil, the Basic and Digest methods are used. func NewAuthServer(user string, pass string, methods []AuthMethod) *AuthServer { if methods == nil { methods = []AuthMethod{Basic, Digest}