From 8e0cc7dd2f7c45b97b9ed2cc5edd0a760cb8698a Mon Sep 17 00:00:00 2001 From: Julien Neuhart Date: Fri, 17 Jan 2025 10:00:08 +0100 Subject: [PATCH] fix(typo): root route HTML --- pkg/modules/api/api.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/modules/api/api.go b/pkg/modules/api/api.go index 7e4302d5..4ec91d9f 100644 --- a/pkg/modules/api/api.go +++ b/pkg/modules/api/api.go @@ -487,7 +487,7 @@ func (a *Api) Start() error { a.srv.GET( a.rootPath, func(c echo.Context) error { - return c.HTML(http.StatusOK, `Hey, this Gotenberg has no UI, it's an API. Head to the documentation to learn how to interact with it 🚀`) + return c.HTML(http.StatusOK, `Hey, Gotenberg has no UI, it's an API. Head to the documentation to learn how to interact with it 🚀`) }, )