From fec7fd7876c707d36bbfd3412c6e7662dd4942e7 Mon Sep 17 00:00:00 2001 From: Patricio Whittingslow Date: Wed, 29 Jul 2026 11:54:23 -0300 Subject: [PATCH] go format router.go --- http/httphi/router.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/http/httphi/router.go b/http/httphi/router.go index bcb5335..4de5d9e 100644 --- a/http/httphi/router.go +++ b/http/httphi/router.go @@ -22,8 +22,8 @@ const reconfigureWait = 10 * time.Millisecond var ( errNoRequestProto = errors.New("httphi: request line with no HTTP version") errBadRequestProto = errors.New("httphi: unsupported HTTP version in request line") - errBusyExchanges = errors.New("httphi: exchanges still serving, cannot reuse their buffers") - errRouterTornDown = errors.New("httphi: router torn down, configure it before serving") + errBusyExchanges = errors.New("httphi: exchanges still serving, cannot reuse their buffers") + errRouterTornDown = errors.New("httphi: router torn down, configure it before serving") errNotFormEncoded = errors.New("httphi: request body is not application/x-www-form-urlencoded") errNotMultipart = errors.New("httphi: request body is not multipart/form-data")