From 05f9a49f258e18752f6b47ecefe45df83decdf5d Mon Sep 17 00:00:00 2001 From: Davor Kapsa Date: Mon, 3 Dec 2018 19:25:45 +0100 Subject: [PATCH] Fix ErrAuthentication comment --- server/errors.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/errors.go b/server/errors.go index ec0b812b..993cf53e 100644 --- a/server/errors.go +++ b/server/errors.go @@ -22,7 +22,7 @@ var ( // ErrConnectionClosed represents an error condition on a closed connection. ErrConnectionClosed = errors.New("Connection Closed") - // ErrAuthorization represents an error condition on failed authentication. + // ErrAuthentication represents an error condition on failed authentication. ErrAuthentication = errors.New("Authentication Error") // ErrAuthTimeout represents an error condition on failed authorization due to timeout.