From ce04944ce61ed8c0423285ae54c1ec69245000f1 Mon Sep 17 00:00:00 2001 From: Maxime Bajeux Date: Wed, 5 May 2021 11:44:00 +0200 Subject: [PATCH] fix(portainer): Fix the type in the downgrade error message --- api/bolt/errors/errors.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/bolt/errors/errors.go b/api/bolt/errors/errors.go index 8c171686d..61a86239d 100644 --- a/api/bolt/errors/errors.go +++ b/api/bolt/errors/errors.go @@ -4,5 +4,5 @@ import "errors" var ( ErrObjectNotFound = errors.New("Object not found inside the database") - ErrWrongDBEdition = errors.New("The Portainer database is set for Portainer Business Edition, please follow the instructions in our documention to downgrade it: https://documentation.portainer.io/v2.0-be/downgrade/be-to-ce/") + ErrWrongDBEdition = errors.New("The Portainer database is set for Portainer Business Edition, please follow the instructions in our documentation to downgrade it: https://documentation.portainer.io/v2.0-be/downgrade/be-to-ce/") )