From b83b682456089c90195667c3f577ddd786c34961 Mon Sep 17 00:00:00 2001 From: Tim Cooper Date: Sun, 19 Apr 2020 13:32:19 -0500 Subject: [PATCH] fix non-standard NameChars comment (#46) --- name.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/name.go b/name.go index 701281c..5a85b2d 100644 --- a/name.go +++ b/name.go @@ -4,7 +4,7 @@ import ( "errors" ) -// Characters allowed in a name in the beanstalkd protocol. +// NameChars are the allowed name characters in the beanstalkd protocol. const NameChars = `\-+/;.$_()0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz` // NameError indicates that a name was malformed and the specific error