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 🚀`) }, )